first import

Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
bachy
2013-01-30 18:30:33 +01:00
commit 4caa0c442b
37 changed files with 17007 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?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',
),
);
}