added mailing feature
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?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,
|
||||
),
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user