22 lines
430 B
PHP
22 lines
430 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* mailing.features.taxonomy.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_taxonomy_default_vocabularies().
|
|
*/
|
|
function mailing_taxonomy_default_vocabularies() {
|
|
return array(
|
|
'newsletter' => array(
|
|
'name' => 'Newsletter',
|
|
'machine_name' => 'newsletter',
|
|
'description' => 'Simplenews newsletter categories.',
|
|
'hierarchy' => 0,
|
|
'module' => 'simplenews',
|
|
'weight' => 0,
|
|
),
|
|
);
|
|
}
|