24 lines
502 B
PHP
24 lines
502 B
PHP
<?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',
|
|
),
|
|
);
|
|
}
|