features_test.features.taxonomy.inc 810 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * @file
  4. * features_test.features.taxonomy.inc
  5. */
  6. /**
  7. * Implements hook_taxonomy_default_vocabularies().
  8. */
  9. function features_test_taxonomy_default_vocabularies() {
  10. return array(
  11. 'taxonomy_features_test' => array(
  12. 'name' => 'Taxonomy Features Test',
  13. 'machine_name' => 'taxonomy_features_test',
  14. 'description' => 'Taxonomy vocabulary',
  15. 'hierarchy' => 0,
  16. 'module' => 'taxonomy',
  17. 'weight' => 0,
  18. 'rdf_mapping' => array(
  19. 'rdftype' => array(
  20. 0 => 'skos:ConceptScheme',
  21. ),
  22. 'name' => array(
  23. 'predicates' => array(
  24. 0 => 'dc:title',
  25. ),
  26. ),
  27. 'description' => array(
  28. 'predicates' => array(
  29. 0 => 'rdfs:comment',
  30. ),
  31. ),
  32. ),
  33. ),
  34. );
  35. }