Merge pull request #14704 from pradpnayak/REF-1
[civicrm-core.git] / CRM / Contact / BAO / GroupContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33 class CRM_Contact_BAO_GroupContact extends CRM_Contact_DAO_GroupContact {
34
35 /**
36 * Class constructor.
37 */
38 public function __construct() {
39 parent::__construct();
40 }
41
42 /**
43 * Takes an associative array and creates a groupContact object.
44 *
45 * the function extract all the params it needs to initialize the create a
46 * group object. the params array could contain additional unused name/value
47 * pairs
48 *
49 * @param array $params
50 * (reference ) an assoc array of name/value pairs.
51 *
52 * @return CRM_Contact_BAO_Group
53 */
54 public static function add($params) {
55 $hook = empty($params['id']) ? 'create' : 'edit';
56 CRM_Utils_Hook::pre($hook, 'GroupContact', CRM_Utils_Array::value('id', $params), $params);
57
58 if (!self::dataExists($params)) {
59 return NULL;
60 }
61
62 $groupContact = new CRM_Contact_BAO_GroupContact();
63 $groupContact->copyValues($params);
64 $groupContact->save();
65
66 // Lookup existing info for the sake of subscription history
67 if (!empty($params['id'])) {
68 $groupContact->find(TRUE);
69 $params = $groupContact->toArray();
70 }
71 CRM_Contact_BAO_SubscriptionHistory::create($params);
72
73 CRM_Utils_Hook::post($hook, 'GroupContact', $groupContact->id, $groupContact);
74
75 return $groupContact;
76 }
77
78 /**
79 * Check if there is data to create the object.
80 *
81 * @param array $params
82 * (reference ) an assoc array of name/value pairs.
83 *
84 * @return bool
85 */
86 public static function dataExists(&$params) {
87 return (!empty($params['id']) || (!empty($params['group_id']) && !empty($params['contact_id'])));
88 }
89
90 /**
91 * Given the list of params in the params array, fetch the object
92 * and store the values in the values array
93 *
94 * @param array $params
95 * Input parameters to find object.
96 * @param array $values
97 * Output values of the object.
98 *
99 * @return array
100 * (reference) the values that could be potentially assigned to smarty
101 */
102 public static function getValues(&$params, &$values) {
103 if (empty($params)) {
104 return NULL;
105 }
106 $values['group']['data'] = CRM_Contact_BAO_GroupContact::getContactGroup($params['contact_id'],
107 'Added',
108 3
109 );
110
111 // get the total count of groups
112 $values['group']['totalCount'] = CRM_Contact_BAO_GroupContact::getContactGroup($params['contact_id'],
113 'Added',
114 NULL,
115 TRUE
116 );
117
118 return NULL;
119 }
120
121 /**
122 * Given an array of contact ids, add all the contacts to the group
123 *
124 * @param array $contactIds
125 * The array of contact ids to be added.
126 * @param int $groupId
127 * The id of the group.
128 * @param string $method
129 * @param string $status
130 * @param int $tracking
131 *
132 * @return array
133 * (total, added, notAdded) count of contacts added to group
134 */
135 public static function addContactsToGroup(
136 $contactIds,
137 $groupId,
138 $method = 'Admin',
139 $status = 'Added',
140 $tracking = NULL
141 ) {
142 if (empty($contactIds) || empty($groupId)) {
143 return [];
144 }
145
146 CRM_Utils_Hook::pre('create', 'GroupContact', $groupId, $contactIds);
147
148 list($numContactsAdded, $numContactsNotAdded)
149 = self::bulkAddContactsToGroup($contactIds, $groupId, $method, $status, $tracking);
150
151 CRM_Contact_BAO_Contact_Utils::clearContactCaches();
152
153 CRM_Utils_Hook::post('create', 'GroupContact', $groupId, $contactIds);
154
155 return [count($contactIds), $numContactsAdded, $numContactsNotAdded];
156 }
157
158 /**
159 * Given an array of contact ids, remove all the contacts from the group
160 *
161 * @param array $contactIds
162 * (reference ) the array of contact ids to be removed.
163 * @param int $groupId
164 * The id of the group.
165 *
166 * @param string $method
167 * @param string $status
168 * @param string $tracking
169 *
170 * @return array
171 * (total, removed, notRemoved) count of contacts removed to group
172 */
173 public static function removeContactsFromGroup(
174 &$contactIds,
175 $groupId,
176 $method = 'Admin',
177 $status = 'Removed',
178 $tracking = NULL
179 ) {
180 if (!is_array($contactIds)) {
181 return [0, 0, 0];
182 }
183
184 if ($status == 'Removed' || $status == 'Deleted') {
185 $op = 'delete';
186 }
187 else {
188 $op = 'edit';
189 }
190
191 CRM_Utils_Hook::pre($op, 'GroupContact', $groupId, $contactIds);
192
193 $date = date('YmdHis');
194 $numContactsRemoved = 0;
195 $numContactsNotRemoved = 0;
196
197 $group = new CRM_Contact_DAO_Group();
198 $group->id = $groupId;
199 $group->find(TRUE);
200
201 foreach ($contactIds as $contactId) {
202 if ($status == 'Deleted') {
203 $query = "DELETE FROM civicrm_group_contact WHERE contact_id=$contactId AND group_id=$groupId";
204 $dao = CRM_Core_DAO::executeQuery($query);
205 $historyParams = [
206 'group_id' => $groupId,
207 'contact_id' => $contactId,
208 'status' => $status,
209 'method' => $method,
210 'date' => $date,
211 'tracking' => $tracking,
212 ];
213 CRM_Contact_BAO_SubscriptionHistory::create($historyParams);
214 }
215 else {
216 $groupContact = new CRM_Contact_DAO_GroupContact();
217 $groupContact->group_id = $groupId;
218 $groupContact->contact_id = $contactId;
219 // check if the selected contact id already a member, or if this is
220 // an opt-out of a smart group.
221 // if not a member remove to groupContact else keep the count of contacts that are not removed
222 if ($groupContact->find(TRUE) || $group->saved_search_id) {
223 // remove the contact from the group
224 $numContactsRemoved++;
225 }
226 else {
227 $numContactsNotRemoved++;
228 }
229
230 //now we grant the negative membership to contact if not member. CRM-3711
231 $historyParams = [
232 'group_id' => $groupId,
233 'contact_id' => $contactId,
234 'status' => $status,
235 'method' => $method,
236 'date' => $date,
237 'tracking' => $tracking,
238 ];
239 CRM_Contact_BAO_SubscriptionHistory::create($historyParams);
240 $groupContact->status = $status;
241 $groupContact->save();
242 // Remove any rows from the group contact cache so it disappears straight away from smart groups.
243 CRM_Contact_BAO_GroupContactCache::removeContact($contactId, $groupId);
244 }
245 }
246
247 CRM_Contact_BAO_Contact_Utils::clearContactCaches();
248
249 CRM_Utils_Hook::post($op, 'GroupContact', $groupId, $contactIds);
250
251 return [count($contactIds), $numContactsRemoved, $numContactsNotRemoved];
252 }
253
254 /**
255 * Get list of all the groups and groups for a contact.
256 *
257 * @param int $contactId
258 * Contact id.
259 *
260 * @param bool $visibility
261 *
262 *
263 * @return array
264 * this array has key-> group id and value group title
265 */
266 public static function getGroupList($contactId = 0, $visibility = FALSE) {
267 $group = new CRM_Contact_DAO_Group();
268
269 $select = $from = $where = '';
270
271 $select = 'SELECT civicrm_group.id, civicrm_group.title ';
272 $from = ' FROM civicrm_group ';
273 $where = " WHERE civicrm_group.is_active = 1 ";
274 if ($contactId) {
275 $from .= ' , civicrm_group_contact ';
276 $where .= " AND civicrm_group.id = civicrm_group_contact.group_id
277 AND civicrm_group_contact.contact_id = " . CRM_Utils_Type::escape($contactId, 'Integer');
278 }
279
280 if ($visibility) {
281 $where .= " AND civicrm_group.visibility != 'User and User Admin Only'";
282 }
283 $groupBy = " GROUP BY civicrm_group.id";
284
285 $orderby = " ORDER BY civicrm_group.name";
286 $sql = $select . $from . $where . $groupBy . $orderby;
287
288 $group->query($sql);
289
290 $values = [];
291 while ($group->fetch()) {
292 $values[$group->id] = $group->title;
293 }
294
295 return $values;
296 }
297
298 /**
299 * Get the list of groups for contact based on status of group membership.
300 *
301 * @param int $contactId
302 * Contact id.
303 * @param string $status
304 * State of membership.
305 * @param int $numGroupContact
306 * Number of groups for a contact that should be shown.
307 * @param bool $count
308 * True if we are interested only in the count.
309 * @param bool $ignorePermission
310 * True if we should ignore permissions for the current user.
311 * useful in profile where permissions are limited for the user. If left
312 * at false only groups viewable by the current user are returned
313 * @param bool $onlyPublicGroups
314 * True if we want to hide system groups.
315 *
316 * @param bool $excludeHidden
317 *
318 * @param int $groupId
319 *
320 * @param bool $includeSmartGroups
321 * Include or Exclude Smart Group(s)
322 *
323 * @return array|int
324 * the relevant data object values for the contact or the total count when $count is TRUE
325 */
326 public static function getContactGroup(
327 $contactId,
328 $status = NULL,
329 $numGroupContact = NULL,
330 $count = FALSE,
331 $ignorePermission = FALSE,
332 $onlyPublicGroups = FALSE,
333 $excludeHidden = TRUE,
334 $groupId = NULL,
335 $includeSmartGroups = FALSE
336 ) {
337 if ($count) {
338 $select = 'SELECT count(DISTINCT civicrm_group_contact.id)';
339 }
340 else {
341 $select = 'SELECT
342 civicrm_group_contact.id as civicrm_group_contact_id,
343 civicrm_group.title as group_title,
344 civicrm_group.visibility as visibility,
345 civicrm_group_contact.status as status,
346 civicrm_group.id as group_id,
347 civicrm_group.is_hidden as is_hidden,
348 civicrm_subscription_history.date as date,
349 civicrm_subscription_history.method as method';
350 }
351
352 $where = " WHERE contact_a.id = %1 AND civicrm_group.is_active = 1";
353 if (!$includeSmartGroups) {
354 $where .= " AND saved_search_id IS NULL";
355 }
356 if ($excludeHidden) {
357 $where .= " AND civicrm_group.is_hidden = 0 ";
358 }
359 $params = [1 => [$contactId, 'Integer']];
360 if (!empty($status)) {
361 $where .= ' AND civicrm_group_contact.status = %2';
362 $params[2] = [$status, 'String'];
363 }
364 if (!empty($groupId)) {
365 $where .= " AND civicrm_group.id = %3 ";
366 $params[3] = [$groupId, 'Integer'];
367 }
368 $tables = [
369 'civicrm_group_contact' => 1,
370 'civicrm_group' => 1,
371 'civicrm_subscription_history' => 1,
372 ];
373 $whereTables = [];
374 if ($ignorePermission) {
375 $permission = ' ( 1 ) ';
376 }
377 else {
378 $permission = CRM_Core_Permission::getPermissionedStaticGroupClause(CRM_Core_Permission::VIEW, $tables, $whereTables);
379 }
380
381 $from = CRM_Contact_BAO_Query::fromClause($tables);
382
383 $where .= " AND $permission ";
384
385 if ($onlyPublicGroups) {
386 $where .= " AND civicrm_group.visibility != 'User and User Admin Only' ";
387 }
388
389 $order = $limit = '';
390 if (!$count) {
391 $order = ' ORDER BY civicrm_group.title, civicrm_subscription_history.date ASC';
392
393 if ($numGroupContact) {
394 $limit = " LIMIT 0, $numGroupContact";
395 }
396 }
397
398 $sql = $select . $from . $where . $order . $limit;
399
400 if ($count) {
401 $result = CRM_Core_DAO::singleValueQuery($sql, $params);
402 return $result;
403 }
404 else {
405 $dao = CRM_Core_DAO::executeQuery($sql, $params);
406 $values = [];
407 while ($dao->fetch()) {
408 $id = $dao->civicrm_group_contact_id;
409 $values[$id]['id'] = $id;
410 $values[$id]['group_id'] = $dao->group_id;
411 $values[$id]['title'] = $dao->group_title;
412 $values[$id]['visibility'] = $dao->visibility;
413 $values[$id]['is_hidden'] = $dao->is_hidden;
414 switch ($dao->status) {
415 case 'Added':
416 $prefix = 'in_';
417 break;
418
419 case 'Removed':
420 $prefix = 'out_';
421 break;
422
423 default:
424 $prefix = 'pending_';
425 }
426 $values[$id][$prefix . 'date'] = $dao->date;
427 $values[$id][$prefix . 'method'] = $dao->method;
428 if ($status == 'Removed') {
429 $query = "SELECT `date` as `date_added` FROM civicrm_subscription_history WHERE id = (SELECT max(id) FROM civicrm_subscription_history WHERE contact_id = %1 AND status = \"Added\" AND group_id = $dao->group_id )";
430 $dateDAO = CRM_Core_DAO::executeQuery($query, $params);
431 if ($dateDAO->fetch()) {
432 $values[$id]['date_added'] = $dateDAO->date_added;
433 }
434 }
435 }
436 return $values;
437 }
438 }
439
440 /**
441 * Returns membership details of a contact for a group.
442 *
443 * @param int $contactId
444 * Id of the contact.
445 * @param int $groupID
446 * Id of a particular group.
447 * @param string $method
448 * If we want the subscription history details for a specific method.
449 *
450 * @return object
451 * of group contact
452 */
453 public static function getMembershipDetail($contactId, $groupID, $method = 'Email') {
454 $leftJoin = $where = $orderBy = NULL;
455
456 if ($method) {
457 //CRM-13341 add group_id clause
458 $leftJoin = "
459 LEFT JOIN civicrm_subscription_history
460 ON ( civicrm_group_contact.contact_id = civicrm_subscription_history.contact_id
461 AND civicrm_subscription_history.group_id = {$groupID} )";
462 $where = "AND civicrm_subscription_history.method ='Email'";
463 $orderBy = "ORDER BY civicrm_subscription_history.id DESC";
464 }
465 $query = "
466 SELECT *
467 FROM civicrm_group_contact
468 $leftJoin
469 WHERE civicrm_group_contact.contact_id = %1
470 AND civicrm_group_contact.group_id = %2
471 $where
472 $orderBy
473 ";
474
475 $params = [
476 1 => [$contactId, 'Integer'],
477 2 => [$groupID, 'Integer'],
478 ];
479 $dao = CRM_Core_DAO::executeQuery($query, $params);
480 $dao->fetch();
481 return $dao;
482 }
483
484 /**
485 * Method to get Group Id.
486 *
487 * @param int $groupContactID
488 * Id of a particular group.
489 *
490 *
491 * @return groupID
492 */
493 public static function getGroupId($groupContactID) {
494 $dao = new CRM_Contact_DAO_GroupContact();
495 $dao->id = $groupContactID;
496 $dao->find(TRUE);
497 return $dao->group_id;
498 }
499
500 /**
501 * Takes an associative array and creates / removes
502 * contacts from the groups
503 *
504 *
505 * @param array $params
506 * (reference ) an assoc array of name/value pairs.
507 * @param array $contactId
508 * Contact id.
509 *
510 * @param bool $visibility
511 * @param string $method
512 */
513 public static function create(&$params, $contactId, $visibility = FALSE, $method = 'Admin') {
514 $contactIds = [];
515 $contactIds[] = $contactId;
516
517 //if $visibility is true we are coming in via profile mean $method = 'Web'
518 $ignorePermission = FALSE;
519 if ($visibility) {
520 $ignorePermission = TRUE;
521 }
522
523 if ($contactId) {
524 $contactGroupList = CRM_Contact_BAO_GroupContact::getContactGroup($contactId, 'Added',
525 NULL, FALSE, $ignorePermission
526 );
527 if (is_array($contactGroupList)) {
528 foreach ($contactGroupList as $key) {
529 $groupId = $key['group_id'];
530 $contactGroup[$groupId] = $groupId;
531 }
532 }
533 }
534
535 // get the list of all the groups
536 $allGroup = CRM_Contact_BAO_GroupContact::getGroupList(0, $visibility);
537
538 // this fix is done to prevent warning generated by array_key_exits incase of empty array is given as input
539 if (!is_array($params)) {
540 $params = [];
541 }
542
543 // this fix is done to prevent warning generated by array_key_exits incase of empty array is given as input
544 if (!isset($contactGroup) || !is_array($contactGroup)) {
545 $contactGroup = [];
546 }
547
548 // check which values has to be add/remove contact from group
549 foreach ($allGroup as $key => $varValue) {
550 if (!empty($params[$key]) && !array_key_exists($key, $contactGroup)) {
551 // add contact to group
552 CRM_Contact_BAO_GroupContact::addContactsToGroup($contactIds, $key, $method);
553 }
554 elseif (empty($params[$key]) && array_key_exists($key, $contactGroup)) {
555 // remove contact from group
556 CRM_Contact_BAO_GroupContact::removeContactsFromGroup($contactIds, $key, $method);
557 }
558 }
559 }
560
561 /**
562 * @param int $contactID
563 * @param int $groupID
564 *
565 * @return bool
566 */
567 public static function isContactInGroup($contactID, $groupID) {
568 if (!CRM_Utils_Rule::positiveInteger($contactID) ||
569 !CRM_Utils_Rule::positiveInteger($groupID)
570 ) {
571 return FALSE;
572 }
573
574 $params = [
575 ['group', 'IN', [$groupID], 0, 0],
576 ['contact_id', '=', $contactID, 0, 0],
577 ];
578 list($contacts, $_) = CRM_Contact_BAO_Query::apiQuery($params, ['contact_id']);
579
580 if (!empty($contacts)) {
581 return TRUE;
582 }
583 return FALSE;
584 }
585
586 /**
587 * Function merges the groups from otherContactID to mainContactID.
588 * along with subscription history
589 *
590 * @param int $mainContactId
591 * Contact id of main contact record.
592 * @param int $otherContactId
593 * Contact id of record which is going to merge.
594 *
595 * @see CRM_Dedupe_Merger::cpTables()
596 *
597 * TODO: use the 3rd $sqls param to append sql statements rather than executing them here
598 */
599 public static function mergeGroupContact($mainContactId, $otherContactId) {
600 $params = [
601 1 => [$mainContactId, 'Integer'],
602 2 => [$otherContactId, 'Integer'],
603 ];
604
605 // find all groups that are in otherContactID but not in mainContactID, copy them over
606 $sql = "
607 SELECT cOther.group_id
608 FROM civicrm_group_contact cOther
609 LEFT JOIN civicrm_group_contact cMain ON cOther.group_id = cMain.group_id AND cMain.contact_id = %1
610 WHERE cOther.contact_id = %2
611 AND cMain.contact_id IS NULL
612 ";
613 $dao = CRM_Core_DAO::executeQuery($sql, $params);
614
615 $otherGroupIDs = [];
616 while ($dao->fetch()) {
617 $otherGroupIDs[] = $dao->group_id;
618 }
619
620 if (!empty($otherGroupIDs)) {
621 $otherGroupIDString = implode(',', $otherGroupIDs);
622
623 $sql = "
624 UPDATE civicrm_group_contact
625 SET contact_id = %1
626 WHERE contact_id = %2
627 AND group_id IN ( $otherGroupIDString )
628 ";
629 CRM_Core_DAO::executeQuery($sql, $params);
630
631 $sql = "
632 UPDATE civicrm_subscription_history
633 SET contact_id = %1
634 WHERE contact_id = %2
635 AND group_id IN ( $otherGroupIDString )
636 ";
637 CRM_Core_DAO::executeQuery($sql, $params);
638 }
639
640 $sql = "
641 SELECT cOther.group_id as group_id,
642 cOther.status as group_status
643 FROM civicrm_group_contact cMain
644 INNER JOIN civicrm_group_contact cOther ON cMain.group_id = cOther.group_id
645 WHERE cMain.contact_id = %1
646 AND cOther.contact_id = %2
647 ";
648 $dao = CRM_Core_DAO::executeQuery($sql, $params);
649
650 $groupIDs = [];
651 while ($dao->fetch()) {
652 // only copy it over if it has added status and migrate the history
653 if ($dao->group_status == 'Added') {
654 $groupIDs[] = $dao->group_id;
655 }
656 }
657
658 if (!empty($groupIDs)) {
659 $groupIDString = implode(',', $groupIDs);
660
661 $sql = "
662 UPDATE civicrm_group_contact
663 SET status = 'Added'
664 WHERE contact_id = %1
665 AND group_id IN ( $groupIDString )
666 ";
667 CRM_Core_DAO::executeQuery($sql, $params);
668
669 $sql = "
670 UPDATE civicrm_subscription_history
671 SET contact_id = %1
672 WHERE contact_id = %2
673 AND group_id IN ( $groupIDString )
674 ";
675 CRM_Core_DAO::executeQuery($sql, $params);
676 }
677
678 // delete all the other group contacts
679 $sql = "
680 DELETE
681 FROM civicrm_group_contact
682 WHERE contact_id = %2
683 ";
684 CRM_Core_DAO::executeQuery($sql, $params);
685
686 $sql = "
687 DELETE
688 FROM civicrm_subscription_history
689 WHERE contact_id = %2
690 ";
691 CRM_Core_DAO::executeQuery($sql, $params);
692 }
693
694 /**
695 * Given an array of contact ids, add all the contacts to the group
696 *
697 * @param array $contactIDs
698 * The array of contact ids to be added.
699 * @param int $groupID
700 * The id of the group.
701 * @param string $method
702 * @param string $status
703 * @param string $tracking
704 *
705 * @return array
706 * (total, added, notAdded) count of contacts added to group
707 */
708 public static function bulkAddContactsToGroup(
709 $contactIDs,
710 $groupID,
711 $method = 'Admin',
712 $status = 'Added',
713 $tracking = NULL
714 ) {
715
716 $numContactsAdded = 0;
717 $numContactsNotAdded = 0;
718
719 $contactGroupSQL = "
720 REPLACE INTO civicrm_group_contact ( group_id, contact_id, status )
721 VALUES
722 ";
723 $subscriptioHistorySQL = "
724 INSERT INTO civicrm_subscription_history( group_id, contact_id, date, method, status, tracking )
725 VALUES
726 ";
727
728 $date = date('YmdHis');
729
730 // to avoid long strings, lets do BULK_INSERT_HIGH_COUNT values at a time
731 while (!empty($contactIDs)) {
732 $input = array_splice($contactIDs, 0, CRM_Core_DAO::BULK_INSERT_HIGH_COUNT);
733 $contactStr = implode(',', $input);
734
735 // lets check their current status
736 $sql = "
737 SELECT GROUP_CONCAT(contact_id) as contactStr
738 FROM civicrm_group_contact
739 WHERE group_id = %1
740 AND status = %2
741 AND contact_id IN ( $contactStr )
742 ";
743 $params = [
744 1 => [$groupID, 'Integer'],
745 2 => [$status, 'String'],
746 ];
747
748 $presentIDs = [];
749 $dao = CRM_Core_DAO::executeQuery($sql, $params);
750 if ($dao->fetch()) {
751 $presentIDs = explode(',', $dao->contactStr);
752 $presentIDs = array_flip($presentIDs);
753 }
754
755 $gcValues = $shValues = [];
756 foreach ($input as $cid) {
757 if (isset($presentIDs[$cid])) {
758 $numContactsNotAdded++;
759 continue;
760 }
761
762 $gcValues[] = "( $groupID, $cid, '$status' )";
763 $shValues[] = "( $groupID, $cid, '$date', '$method', '$status', '$tracking' )";
764 $numContactsAdded++;
765 }
766
767 if (!empty($gcValues)) {
768 $cgSQL = $contactGroupSQL . implode(",\n", $gcValues);
769 CRM_Core_DAO::executeQuery($cgSQL);
770
771 $shSQL = $subscriptioHistorySQL . implode(",\n", $shValues);
772 CRM_Core_DAO::executeQuery($shSQL);
773 }
774 }
775
776 return [$numContactsAdded, $numContactsNotAdded];
777 }
778
779 /**
780 * Get options for a given field.
781 * @see CRM_Core_DAO::buildOptions
782 *
783 * @param string $fieldName
784 * @param string $context
785 * @see CRM_Core_DAO::buildOptionsContext
786 * @param array $props
787 * whatever is known about this dao object.
788 *
789 * @return array|bool
790 */
791 public static function buildOptions($fieldName, $context = NULL, $props = []) {
792
793 $options = CRM_Core_PseudoConstant::get(__CLASS__, $fieldName, $props, $context);
794
795 // Sort group list by hierarchy
796 // TODO: This will only work when api.entity is "group_contact". What about others?
797 if (($fieldName == 'group' || $fieldName == 'group_id') && ($context == 'search' || $context == 'create')) {
798 $options = CRM_Contact_BAO_Group::getGroupsHierarchy($options, NULL, '- ', TRUE);
799 }
800
801 return $options;
802 }
803
804 }