updated features

This commit is contained in:
Bachir Soussi Chiadmi
2016-10-25 16:05:27 +02:00
parent 54399b169a
commit 610760bedf
24 changed files with 2428 additions and 598 deletions

View File

@@ -18,7 +18,7 @@ function mailing_default_elysia_cron_rules() {
$cron_rule->rule = '* * * * *';
$cron_rule->weight = -11;
$cron_rule->context = 'mailing';
$cron_rules['simplenews_cron'] = $cron_rule;
$cron_rules[''] = $cron_rule;
$cron_rule = new stdClass;
$cron_rule->disabled = FALSE; /* Edit this to true to make a default cron_rule disabled initially */
@@ -28,7 +28,7 @@ function mailing_default_elysia_cron_rules() {
$cron_rule->rule = '* * * * *';
$cron_rule->weight = NULL;
$cron_rule->context = NULL;
$cron_rules['simplenews_scheduler_cron'] = $cron_rule;
$cron_rules[''] = $cron_rule;
return $cron_rules;

View File

@@ -223,7 +223,7 @@ function mailing_strongarm() {
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mailgun_domain';
$strongarm->value = 'mail.materio.com';
$strongarm->value = 'materio.com';
$export['mailgun_domain'] = $strongarm;
$strongarm = new stdClass();
@@ -237,7 +237,7 @@ function mailing_strongarm() {
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mailgun_log';
$strongarm->value = 0;
$strongarm->value = 1;
$export['mailgun_log'] = $strongarm;
$strongarm = new stdClass();
@@ -258,21 +258,21 @@ function mailing_strongarm() {
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mailgun_tracking';
$strongarm->value = 'default';
$strongarm->value = 'enabled';
$export['mailgun_tracking'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mailgun_tracking_clicks';
$strongarm->value = 'default';
$strongarm->value = 'enabled';
$export['mailgun_tracking_clicks'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mailgun_tracking_opens';
$strongarm->value = 'default';
$strongarm->value = 'enabled';
$export['mailgun_tracking_opens'] = $strongarm;
$strongarm = new stdClass();