frequently_asked_questions.features.taxonomy.inc 445 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * frequently_asked_questions.features.taxonomy.inc
  5. */
  6. /**
  7. * Implements hook_taxonomy_default_vocabularies().
  8. */
  9. function frequently_asked_questions_taxonomy_default_vocabularies() {
  10. return array(
  11. 'faq_categories' => array(
  12. 'name' => 'faq categories',
  13. 'machine_name' => 'faq_categories',
  14. 'description' => '',
  15. 'hierarchy' => 0,
  16. 'module' => 'taxonomy',
  17. 'weight' => 0,
  18. ),
  19. );
  20. }