本文整理汇总了PHP中CRM_Contact_BAO_GroupContactCache::limit方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Contact_BAO_GroupContactCache::limit方法的具体用法?PHP CRM_Contact_BAO_GroupContactCache::limit怎么用?PHP CRM_Contact_BAO_GroupContactCache::limit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Contact_BAO_GroupContactCache
的用法示例。
在下文中一共展示了CRM_Contact_BAO_GroupContactCache::limit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getGroupMemberships
/**
* Function to call syncontacts with smart groups and static groups xxx delete
*
* Returns object that can iterate over a slice of the live contacts in given group.
*/
static function getGroupMemberships($groupIDs)
{
CRM_Mailchimp_Utils::checkDebug('Start-CRM_Mailchimp_Utils getGroupMemberships $groupIDs', $groupIDs);
$group = new CRM_Contact_DAO_Group();
$group->id = $groupID;
$group->find();
if ($group->fetch()) {
//Check smart groups
if ($group->saved_search_id) {
$groupContactCache = new CRM_Contact_BAO_GroupContactCache();
$groupContactCache->group_id = $groupID;
if ($start !== null) {
$groupContactCache->limit($start, CRM_Mailchimp_Form_Sync::BATCH_COUNT);
}
$groupContactCache->find();
return $groupContactCache;
} else {
$groupContact = new CRM_Contact_BAO_GroupContact();
$groupContact->group_id = $groupID;
$groupContact->whereAdd("status = 'Added'");
if ($start !== null) {
$groupContact->limit($start, CRM_Mailchimp_Form_Sync::BATCH_COUNT);
}
$groupContact->find();
return $groupContact;
}
}
CRM_Mailchimp_Utils::checkDebug('End-CRM_Mailchimp_Utils getGroupMemberships $groupIDs', $groupIDs);
return FALSE;
}