popsu_themes_trans.features.taxonomy.inc 887 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @file
  4. * popsu_themes_trans.features.taxonomy.inc
  5. */
  6. /**
  7. * Implements hook_taxonomy_default_vocabularies().
  8. */
  9. function popsu_themes_trans_taxonomy_default_vocabularies() {
  10. return array(
  11. 'popsu_themtrans' => array(
  12. 'name' => 'Type de thème transversal',
  13. 'machine_name' => 'popsu_themtrans',
  14. 'description' => 'Permet de nommer le thème transversal',
  15. 'hierarchy' => '0',
  16. 'module' => 'taxonomy',
  17. 'weight' => '-6',
  18. 'language' => 'und',
  19. 'i18n_mode' => '0',
  20. 'rdf_mapping' => array(
  21. 'rdftype' => array(
  22. 0 => 'skos:ConceptScheme',
  23. ),
  24. 'name' => array(
  25. 'predicates' => array(
  26. 0 => 'dc:title',
  27. ),
  28. ),
  29. 'description' => array(
  30. 'predicates' => array(
  31. 0 => 'rdfs:comment',
  32. ),
  33. ),
  34. ),
  35. ),
  36. );
  37. }