materio-base-legacy/frequently_asked_questions/frequently_asked_questions.features.taxonomy.inc
2014-07-11 18:32:59 +02:00

24 lines
496 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,
),
);
}