added mailing feature

This commit is contained in:
Bachir Soussi Chiadmi
2016-07-19 20:09:30 +02:00
parent e310490c7f
commit 507402d07b
12 changed files with 1560 additions and 0 deletions

View File

@@ -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,
),
);
}