popsu_special_pages.features.taxonomy.inc 923 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @file
  4. * popsu_special_pages.features.taxonomy.inc
  5. */
  6. /**
  7. * Implements hook_taxonomy_default_vocabularies().
  8. */
  9. function popsu_special_pages_taxonomy_default_vocabularies() {
  10. return array(
  11. 'popsu_special_taxonomy' => array(
  12. 'name' => 'Type de page spéciale',
  13. 'machine_name' => 'popsu_special_taxonomy',
  14. 'description' => 'Ce vocabulaire sert à catégoriser les pages spéciales POPSU',
  15. 'hierarchy' => '0',
  16. 'module' => 'taxonomy',
  17. 'weight' => '-8',
  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. }