frequently_asked_questions.features.taxonomy.inc 496 B

1234567891011121314151617181920212223
  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. 'language' => 'und',
  19. 'i18n_mode' => 1,
  20. ),
  21. );
  22. }