本文整理汇总了PHP中MailChimp::Dispatch方法的典型用法代码示例。如果您正苦于以下问题:PHP MailChimp::Dispatch方法的具体用法?PHP MailChimp::Dispatch怎么用?PHP MailChimp::Dispatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MailChimp
的用法示例。
在下文中一共展示了MailChimp::Dispatch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _DoProcessPostedData
private function _DoProcessPostedData()
{
if ($this->GetErrorCount() > 0) {
return false;
}
// handle the data
$this->_ProcessFiles();
$this->_ProcessPost();
if ($this->GetErrorCount() > 0) {
return false;
}
// anything else we need to do before returning to the user
$mailchimpList = Config::GetInstance()->GetConfig('settings', 'mailchimp', 'lists');
if ($mailchimpList && is_array($mailchimpList)) {
foreach ($mailchimpList as $list) {
if (isset($list->is_present) && $list->is_present) {
$mc = new MailChimp();
$mc->Dispatch(Config::GetInstance()->GetConfig('settings', 'mailchimp'));
// dispatcher loops through the lists, thus no need to continue here
break;
}
}
}
}