1234567891011121314151617181920212223 |
- <?php
- /**
- * @file
- * frequently_asked_questions.features.taxonomy.inc
- */
- /**
- * Implements hook_taxonomy_default_vocabularies().
- */
- function frequently_asked_questions_taxonomy_default_vocabularies() {
- return array(
- 'faq_categories' => array(
- 'name' => 'faq categories',
- 'machine_name' => 'faq_categories',
- 'description' => '',
- 'hierarchy' => 0,
- 'module' => 'taxonomy',
- 'weight' => 0,
- 'language' => 'und',
- 'i18n_mode' => 1,
- ),
- );
- }
|