24 lines
467 B
PHP
24 lines
467 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* materio_subscriptions.features.taxonomy.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_taxonomy_default_vocabularies().
|
|
*/
|
|
function materio_subscriptions_taxonomy_default_vocabularies() {
|
|
return array(
|
|
'catalog' => array(
|
|
'name' => 'Catalog',
|
|
'machine_name' => 'catalog',
|
|
'description' => '',
|
|
'hierarchy' => 1,
|
|
'module' => 'uc_catalog',
|
|
'weight' => 0,
|
|
'language' => 'und',
|
|
'i18n_mode' => 0,
|
|
),
|
|
);
|
|
}
|