materio-base-legacy/frequently_asked_questions/frequently_asked_questions.features.taxonomy.inc
bachy 09ac2a24ac added faq
Signed-off-by: bachy <git@g-u-i.net>
2013-03-29 18:36:32 +01:00

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',
),
);
}