mailchimp.api.php in Mailchimp 8
Same filename and directory in other branches
Mailchimp module hook definitions.
File
mailchimp.api.phpView source
<?php
/**
* @file
* Mailchimp module hook definitions.
*/
use Drupal\Core\Entity\EntityInterface;
/**
* @addtogroup hooks
* @{
*/
/**
* Perform an action when an email address is successfully subscribed to a list.
*
* @param string $list_id
* The Mailchimp list ID.
* @param string $email
* The email address subscribed.
* @param string $merge_vars
* The mergevars used during the subscription.
*
* @ingroup mailchimp
*/
function hook_mailchimp_subscribe_success($list_id, $email, $merge_vars) {
}
/**
* Perform an action when an email is successfully unsubscribed from a list.
*
* @param string $list_id
* The Mailchimp list ID.
* @param string $email
* The email address unsubscribed.
*
* @ingroup mailchimp
*/
function hook_mailchimp_unsubscribe_success($list_id, $email) {
}
/**
* Perform an action during the firing of a Mailchimp webhook.
*
* Refer to http://apidocs.mailchimp.com/webhooks for more details.
*
* @param string $type
* The type of webhook firing.
* @param array $data
* The data contained in the webhook.
*
* @ingroup mailchimp
*/
function hook_mailchimp_process_webhook($type, array $data) {
}
/**
* Alter mergevars before they are sent to Mailchimp.
*
* @param array $mergevars
* The current mergevars.
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity used to populate the mergevars.
* @param string $entity_type
* The entity type.
*
* @ingroup mailchimp
*/
function hook_mailchimp_lists_mergevars_alter(array &$mergevars, EntityInterface $entity, $entity_type) {
}
/**
* @} End of "addtogroup hooks".
*/
Functions
Name | Description |
---|---|
hook_mailchimp_lists_mergevars_alter | Alter mergevars before they are sent to Mailchimp. |
hook_mailchimp_process_webhook | Perform an action during the firing of a Mailchimp webhook. |
hook_mailchimp_subscribe_success | Perform an action when an email address is successfully subscribed to a list. |
hook_mailchimp_unsubscribe_success | Perform an action when an email is successfully unsubscribed from a list. |