updated materio_user_rules : rules event on user validation+has subscribed works

This commit is contained in:
Bachir Soussi Chiadmi 2013-11-08 22:34:54 +01:00
parent d35f79e2cf
commit 64ebb28c01
2 changed files with 27 additions and 23 deletions

View File

@ -7,8 +7,26 @@
*/ */
function materio_user_rules_user_update(&$edit, $account) { function materio_user_rules_user_update(&$edit, $account) {
if (!empty($account->logintoboggan_email_validated)) { if (!empty($account->logintoboggan_email_validated)) {
$subscritpions = ;
rules_invoke_event('materio_logintoboggan_validated', $account, $subscritpions); if($subscriber = simplenews_subscriber_load_by_mail($account->mail)){
foreach($subscriber->newsletter_subscription as $tid => $subscription){
$term = taxonomy_term_load($tid);
$subscriptions_text_array[] = $term->name;
$subscriptions_tids[] = $tid;
}
$subscriptions_text = implode(' ,', $subscriptions_text_array);
$args = array(
'account' => $account,
'subscriptions_list' => $subscriptions_tids,
'subscriptions_text' => $subscriptions_text,
);
rules_invoke_event_by_args('materio_logintoboggan_validated', $args);
}
} }
} }
@ -21,6 +39,6 @@ function materio_user_rules_simplenews_subscribe_user($subscriber, $subscription
'mail' => $subscriber->mail, 'mail' => $subscriber->mail,
'tid' => $subscription->tid, 'tid' => $subscription->tid,
); );
rules_invoke_event_by_args('simplenews_rules_event_subscribe', $args); // rules_invoke_event_by_args('simplenews_rules_event_subscribe', $args);
} }
} }

View File

@ -10,34 +10,20 @@
function materio_user_rules_rules_event_info() { function materio_user_rules_rules_event_info() {
return array( return array(
'materio_logintoboggan_validated' => array( 'materio_logintoboggan_validated' => array(
'label' => t("When the user account is validated."), 'label' => t("a user is validated and subcribed to newsletter on registration."),
'group' => 'Materio', 'group' => 'Materio',
'variables' => array( 'variables' => array(
'account' => array( 'account' => array(
'type' => 'user', 'type' => 'user',
'label' => t("The validated user's account"), 'label' => t("The validated user's account"),
), ),
'simplenews' => array( 'subscriptions_list' => array(
'type' => 'simplenews', 'type' => 'list',
'label' => t("The Simplenews info from the account validated"), 'label' => t("The Simplenews info from the account validated as a list of tid for looping"),
), ),
), 'subscriptions_text' => array(
'group' => t('User'),
),
'materio_simplenews_rules_event_subscribe' => array(
'label' => t('A user has been subscribed and verified'),
'group' => t('Simplenews'),
'variables' => array(
'mail' => array(
'type' => 'text', 'type' => 'text',
'label' => t('E-Mail'), 'label' => t("The Simplenews info from the account validated as a single text"),
'description' => t('The e-mail address that has been subscribed.'),
),
'tid' => array(
'type' => 'integer',
'label' => t('Simplenews category'),
'descrption' => t('The newsletter category of the subscription.'),
'options list' => 'simplenews_category_list',
), ),
), ),
), ),