materio-base-legacy/sites/all/modules/features/showroom/showroom.features.taxonomy.inc
2016-10-25 16:05:07 +02:00

22 lines
391 B
PHP

<?php
/**
* @file
* showroom.features.taxonomy.inc
*/
/**
* Implements hook_taxonomy_default_vocabularies().
*/
function showroom_taxonomy_default_vocabularies() {
return array(
'showroom' => array(
'name' => 'Showroom',
'machine_name' => 'showroom',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
);
}