Merge pull request #6697 from eileenmcnaughton/CRM-17116-custom-date-search-fields
[civicrm-core.git] / CRM / Contact / BAO / Group.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
e70a7fc0 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
34
35 /**
67d19299 36 * Class constructor.
6a488035 37 */
00be9182 38 public function __construct() {
6a488035
TO
39 parent::__construct();
40 }
41
42 /**
fe482240
EM
43 * Retrieve DB object based on input parameters.
44 *
45 * It also stores all the retrieved values in the default array.
6a488035 46 *
77c5b619
TO
47 * @param array $params
48 * (reference ) an assoc array of name/value pairs.
49 * @param array $defaults
50 * (reference ) an assoc array to hold the flattened values.
6a488035 51 *
16b10e64 52 * @return CRM_Contact_BAO_Group
6a488035 53 */
00be9182 54 public static function retrieve(&$params, &$defaults) {
6a488035
TO
55 $group = new CRM_Contact_DAO_Group();
56 $group->copyValues($params);
57 if ($group->find(TRUE)) {
58 CRM_Core_DAO::storeValues($group, $defaults);
59 return $group;
60 }
61
62 return NULL;
63 }
64
65 /**
67d19299 66 * Delete the group and all the object that connect to this group.
67 *
68 * Incredibly destructive.
6a488035 69 *
67d19299 70 * @param int $id Group id.
6a488035 71 */
00be9182 72 public static function discard($id) {
6a488035
TO
73 CRM_Utils_Hook::pre('delete', 'Group', $id, CRM_Core_DAO::$_nullArray);
74
75 $transaction = new CRM_Core_Transaction();
76
77 // added for CRM-1631 and CRM-1794
78 // delete all subscribed mails with the selected group id
79 $subscribe = new CRM_Mailing_Event_DAO_Subscribe();
80 $subscribe->group_id = $id;
81 $subscribe->delete();
82
83 // delete all Subscription records with the selected group id
84 $subHistory = new CRM_Contact_DAO_SubscriptionHistory();
85 $subHistory->group_id = $id;
86 $subHistory->delete();
87
88 // delete all crm_group_contact records with the selected group id
89 $groupContact = new CRM_Contact_DAO_GroupContact();
90 $groupContact->group_id = $id;
91 $groupContact->delete();
92
93 // make all the 'add_to_group_id' field of 'civicrm_uf_group table', pointing to this group, as null
94 $params = array(1 => array($id, 'Integer'));
95 $query = "UPDATE civicrm_uf_group SET `add_to_group_id`= NULL WHERE `add_to_group_id` = %1";
96 CRM_Core_DAO::executeQuery($query, $params);
97
98 $query = "UPDATE civicrm_uf_group SET `limit_listings_group_id`= NULL WHERE `limit_listings_group_id` = %1";
99 CRM_Core_DAO::executeQuery($query, $params);
100
101 // make sure u delete all the entries from civicrm_mailing_group and civicrm_campaign_group
102 // CRM-6186
103 $query = "DELETE FROM civicrm_mailing_group where entity_table = 'civicrm_group' AND entity_id = %1";
104 CRM_Core_DAO::executeQuery($query, $params);
105
106 $query = "DELETE FROM civicrm_campaign_group where entity_table = 'civicrm_group' AND entity_id = %1";
107 CRM_Core_DAO::executeQuery($query, $params);
108
109 $query = "DELETE FROM civicrm_acl_entity_role where entity_table = 'civicrm_group' AND entity_id = %1";
110 CRM_Core_DAO::executeQuery($query, $params);
111
112 if (CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MULTISITE_PREFERENCES_NAME,
353ffa53
TO
113 'is_enabled'
114 )
115 ) {
6a488035 116 // clear any descendant groups cache if exists
554259a7 117 CRM_Core_BAO_Cache::deleteGroup('descendant groups for an org');
6a488035
TO
118 }
119
120 // delete from group table
121 $group = new CRM_Contact_DAO_Group();
122 $group->id = $id;
123 $group->delete();
124
125 $transaction->commit();
126
127 CRM_Utils_Hook::post('delete', 'Group', $id, $group);
128
129 // delete the recently created Group
130 $groupRecent = array(
131 'id' => $id,
132 'type' => 'Group',
133 );
134 CRM_Utils_Recent::del($groupRecent);
135 }
136
137 /**
138 * Returns an array of the contacts in the given group.
6a488035 139 */
00be9182 140 public static function getGroupContacts($id) {
6a488035
TO
141 $params = array(array('group', 'IN', array($id => 1), 0, 0));
142 list($contacts, $_) = CRM_Contact_BAO_Query::apiQuery($params, array('contact_id'));
143 return $contacts;
144 }
145
146 /**
fe482240 147 * Get the count of a members in a group with the specific status.
6a488035 148 *
77c5b619
TO
149 * @param int $id
150 * Group id.
3f8d2862
CW
151 * @param string $status
152 * status of members in group
80ad33e7 153 * @param bool $countChildGroups
6a488035 154 *
a6c01b45
CW
155 * @return int
156 * count of members in the group with above status
6a488035 157 */
00be9182 158 public static function memberCount($id, $status = 'Added', $countChildGroups = FALSE) {
6a488035
TO
159 $groupContact = new CRM_Contact_DAO_GroupContact();
160 $groupIds = array($id);
161 if ($countChildGroups) {
162 $groupIds = CRM_Contact_BAO_GroupNesting::getDescendentGroupIds($groupIds);
163 }
164 $count = 0;
165
166 $contacts = self::getGroupContacts($id);
167
168 foreach ($groupIds as $groupId) {
169
170 $groupContacts = self::getGroupContacts($groupId);
171 foreach ($groupContacts as $gcontact) {
172 if ($groupId != $id) {
173 // Loop through main group's contacts
174 // and subtract from the count for each contact which
175 // matches one in the present group, if it is not the
176 // main group
177 foreach ($contacts as $contact) {
178 if ($contact['contact_id'] == $gcontact['contact_id']) {
179 $count--;
180 }
181 }
182 }
183 }
184 $groupContact->group_id = $groupId;
185 if (isset($status)) {
186 $groupContact->status = $status;
187 }
188 $groupContact->_query['condition'] = 'WHERE contact_id NOT IN (SELECT id FROM civicrm_contact WHERE is_deleted = 1)';
189 $count += $groupContact->count();
190 }
191 return $count;
192 }
193
194 /**
fe482240 195 * Get the list of member for a group id.
6a488035 196 *
100fef9d 197 * @param int $groupID
80ad33e7
EM
198 * @param bool $useCache
199 *
a6c01b45
CW
200 * @return array
201 * this array contains the list of members for this group id
6a488035 202 */
00be9182 203 public static function &getMember($groupID, $useCache = TRUE) {
6a488035
TO
204 $params = array(array('group', 'IN', array($groupID => 1), 0, 0));
205 $returnProperties = array('contact_id');
206 list($contacts, $_) = CRM_Contact_BAO_Query::apiQuery($params, $returnProperties, NULL, NULL, 0, 0, $useCache);
207
208 $aMembers = array();
209 foreach ($contacts as $contact) {
210 $aMembers[$contact['contact_id']] = 1;
211 }
212
213 return $aMembers;
214 }
215
216 /**
217 * Returns array of group object(s) matching a set of one or Group properties.
218 *
77c5b619
TO
219 * @param array $params
220 * Limits the set of groups returned.
221 * @param array $returnProperties
222 * Which properties should be included in the returned group objects.
3f8d2862
CW
223 * (member_count should be last element.)
224 * @param string $sort
225 * @param int $offset
226 * @param int $rowCount
80ad33e7 227 *
a6c01b45 228 * @return array
16b10e64 229 * Array of group objects.
6a488035 230 *
6a488035
TO
231 *
232 * @todo other BAO functions that use returnProperties (e.g. Query Objects) receive the array flipped & filled with 1s and
233 * add in essential fields (e.g. id). This should follow a regular pattern like the others
234 */
2da40d21 235 public static function getGroups(
6a488035
TO
236 $params = NULL,
237 $returnProperties = NULL,
238 $sort = NULL,
239 $offset = NULL,
240 $rowCount = NULL
241 ) {
242 $dao = new CRM_Contact_DAO_Group();
6ce76461
CW
243 if (!isset($params['is_active'])) {
244 $dao->is_active = 1;
245 }
6a488035
TO
246 if ($params) {
247 foreach ($params as $k => $v) {
248 if ($k == 'name' || $k == 'title') {
249 $dao->whereAdd($k . ' LIKE "' . CRM_Core_DAO::escapeString($v) . '"');
250 }
6ce76461
CW
251 elseif ($k == 'group_type') {
252 foreach ((array) $v as $type) {
253 $dao->whereAdd($k . " LIKE '%" . CRM_Core_DAO::VALUE_SEPARATOR . (int) $type . CRM_Core_DAO::VALUE_SEPARATOR . "%'");
254 }
255 }
6a488035 256 elseif (is_array($v)) {
6ce76461
CW
257 foreach ($v as &$num) {
258 $num = (int) $num;
259 }
6a488035
TO
260 $dao->whereAdd($k . ' IN (' . implode(',', $v) . ')');
261 }
262 else {
263 $dao->$k = $v;
264 }
265 }
266 }
267
268 if ($offset || $rowCount) {
269 $offset = ($offset > 0) ? $offset : 0;
270 $rowCount = ($rowCount > 0) ? $rowCount : 25;
271 $dao->limit($offset, $rowCount);
272 }
273
274 if ($sort) {
275 $dao->orderBy($sort);
276 }
277
278 // return only specific fields if returnproperties are sent
279 if (!empty($returnProperties)) {
280 $dao->selectAdd();
281 $dao->selectAdd(implode(',', $returnProperties));
282 }
283 $dao->find();
284
285 $flag = $returnProperties && in_array('member_count', $returnProperties) ? 1 : 0;
286
287 $groups = array();
288 while ($dao->fetch()) {
289 $group = new CRM_Contact_DAO_Group();
290 if ($flag) {
291 $dao->member_count = CRM_Contact_BAO_Group::memberCount($dao->id);
292 }
293 $groups[] = clone($dao);
294 }
295 return $groups;
296 }
297
298 /**
fe482240 299 * Make sure that the user has permission to access this group.
6a488035 300 *
77c5b619
TO
301 * @param int $id
302 * The id of the object.
6a488035 303 *
a6c01b45
CW
304 * @return string
305 * the permission that the user has (or NULL)
6a488035 306 */
00be9182 307 public static function checkPermission($id) {
6a488035
TO
308 $allGroups = CRM_Core_PseudoConstant::allGroup();
309
310 $permissions = NULL;
311 if (CRM_Core_Permission::check('edit all contacts') ||
312 CRM_ACL_API::groupPermission(CRM_ACL_API::EDIT, $id, NULL,
313 'civicrm_saved_search', $allGroups
314 )
315 ) {
316 $permissions[] = CRM_Core_Permission::EDIT;
317 }
318
319 if (CRM_Core_Permission::check('view all contacts') ||
320 CRM_ACL_API::groupPermission(CRM_ACL_API::VIEW, $id, NULL,
321 'civicrm_saved_search', $allGroups
322 )
323 ) {
324 $permissions[] = CRM_Core_Permission::VIEW;
325 }
326
327 if (!empty($permissions) && CRM_Core_Permission::check('delete contacts')) {
328 // Note: using !empty() in if condition, restricts the scope of delete
329 // permission to groups/contacts that are editable/viewable.
330 // We can remove this !empty condition once we have ACL support for delete functionality.
331 $permissions[] = CRM_Core_Permission::DELETE;
332 }
333
334 return $permissions;
335 }
336
337 /**
fe482240 338 * Create a new group.
6a488035 339 *
77c5b619 340 * @param array $params
6a488035 341 *
72b3a70c
CW
342 * @return CRM_Contact_BAO_Group|NULL
343 * The new group BAO (if created)
6a488035
TO
344 */
345 public static function &create(&$params) {
346
a7488080 347 if (!empty($params['id'])) {
6a488035
TO
348 CRM_Utils_Hook::pre('edit', 'Group', $params['id'], $params);
349 }
350 else {
351 CRM_Utils_Hook::pre('create', 'Group', NULL, $params);
352 }
353
354 // form the name only if missing: CRM-627
e2b7c67d 355 $nameParam = CRM_Utils_Array::value('name', $params, NULL);
8cc574cf 356 if (!$nameParam && empty($params['id'])) {
6a488035
TO
357 $params['name'] = CRM_Utils_String::titleToVar($params['title']);
358 }
359
360 // convert params if array type
361 if (isset($params['group_type'])) {
362 if (is_array($params['group_type'])) {
363 $params['group_type'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
364 array_keys($params['group_type'])
365 ) . CRM_Core_DAO::VALUE_SEPARATOR;
6a488035
TO
366 }
367 }
368 else {
369 $params['group_type'] = '';
370 }
371
481a74f4 372 $session = CRM_Core_Session::singleton();
d0dfb649
PJ
373 $cid = $session->get('userID');
374 // this action is add
375 if ($cid && empty($params['id'])) {
6a488035
TO
376 $params['created_id'] = $cid;
377 }
d0dfb649
PJ
378 // this action is update
379 if ($cid && !empty($params['id'])) {
380 $params['modified_id'] = $cid;
381 }
6a488035
TO
382
383 $group = new CRM_Contact_BAO_Group();
384 $group->copyValues($params);
57c93d72
E
385 //@todo very hacky fix for the fact this function wants to receive 'parents' as an array further down but
386 // needs it as a separated string for the DB. Preferred approaches are having the copyParams or save fn
387 // use metadata to translate the array to the appropriate DB type or altering the param in the api layer,
388 // or at least altering the param in same section as 'group_type' rather than repeating here. However, further down
389 // we need the $params one to be in it's original form & we are not sure what test coverage we have on that
22e263ad 390 if (isset($group->parents) && is_array($group->parents)) {
57c93d72 391 $group->parents = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
392 array_keys($group->parents)
393 ) . CRM_Core_DAO::VALUE_SEPARATOR;
57c93d72 394 }
a7488080 395 if (empty($params['id']) &&
e2b7c67d 396 !$nameParam
0aab99e7 397 ) {
6a488035
TO
398 $group->name .= "_tmp";
399 }
400 $group->save();
401
402 if (!$group->id) {
403 return NULL;
404 }
405
a7488080 406 if (empty($params['id']) &&
e2b7c67d 407 !$nameParam
0aab99e7 408 ) {
6a488035
TO
409 $group->name = substr($group->name, 0, -4) . "_{$group->id}";
410 }
411
412 $group->buildClause();
413 $group->save();
414
415 // add custom field values
a7488080 416 if (!empty($params['custom'])) {
6a488035
TO
417 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_group', $group->id);
418 }
419
420 // make the group, child of domain/site group by default.
421 $domainGroupID = CRM_Core_BAO_Domain::getGroupId();
422 if (CRM_Utils_Array::value('no_parent', $params) !== 1) {
423 if (empty($params['parents']) &&
424 $domainGroupID != $group->id &&
425 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MULTISITE_PREFERENCES_NAME,
426 'is_enabled'
427 ) &&
428 !CRM_Contact_BAO_GroupNesting::hasParentGroups($group->id)
429 ) {
430 // if no parent present and the group doesn't already have any parents,
431 // make sure site group goes as parent
432 $params['parents'] = array($domainGroupID => 1);
433 }
434 elseif (array_key_exists('parents', $params) && !is_array($params['parents'])) {
435 $params['parents'] = array($params['parents'] => 1);
436 }
437
438 if (!empty($params['parents'])) {
439 foreach ($params['parents'] as $parentId => $dnc) {
440 if ($parentId && !CRM_Contact_BAO_GroupNesting::isParentChild($parentId, $group->id)) {
441 CRM_Contact_BAO_GroupNesting::add($parentId, $group->id);
442 }
443 }
444 }
445
446 // clear any descendant groups cache if exists
447 $finalGroups = CRM_Core_BAO_Cache::deleteGroup('descendant groups for an org');
448
449 // this is always required, since we don't know when a
450 // parent group is removed
451 CRM_Contact_BAO_GroupNestingCache::update();
452
453 // update group contact cache for all parent groups
454 $parentIds = CRM_Contact_BAO_GroupNesting::getParentGroupIds($group->id);
455 foreach ($parentIds as $parentId) {
456 CRM_Contact_BAO_GroupContactCache::add($parentId);
457 }
458 }
459
a7488080 460 if (!empty($params['organization_id'])) {
6a488035
TO
461 $groupOrg = array();
462 $groupOrg = $params;
463 $groupOrg['group_id'] = $group->id;
464 CRM_Contact_BAO_GroupOrganization::add($groupOrg);
465 }
466
467 CRM_Contact_BAO_GroupContactCache::add($group->id);
468
a7488080 469 if (!empty($params['id'])) {
6a488035
TO
470 CRM_Utils_Hook::post('edit', 'Group', $group->id, $group);
471 }
472 else {
473 CRM_Utils_Hook::post('create', 'Group', $group->id, $group);
474 }
475
476 $recentOther = array();
477 if (CRM_Core_Permission::check('edit groups')) {
478 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/group', 'reset=1&action=update&id=' . $group->id);
479 // currently same permission we are using for delete a group
480 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/group', 'reset=1&action=delete&id=' . $group->id);
481 }
482
483 // add the recently added group (unless hidden: CRM-6432)
484 if (!$group->is_hidden) {
485 CRM_Utils_Recent::add($group->title,
486 CRM_Utils_System::url('civicrm/group/search', 'reset=1&force=1&context=smog&gid=' . $group->id),
487 $group->id,
488 'Group',
489 NULL,
490 NULL,
491 $recentOther
492 );
493 }
494 return $group;
495 }
496
497 /**
100fef9d 498 * Given a saved search compute the clause and the tables
6a488035
TO
499 * and store it for future use
500 */
00be9182 501 public function buildClause() {
1dbdc161 502 $params = array(array('group', 'IN', array($this->id), 0, 0));
6a488035
TO
503
504 if (!empty($params)) {
505 $tables = $whereTables = array();
506 $this->where_clause = CRM_Contact_BAO_Query::getWhereClause($params, NULL, $tables, $whereTables);
507 if (!empty($tables)) {
508 $this->select_tables = serialize($tables);
509 }
510 if (!empty($whereTables)) {
511 $this->where_tables = serialize($whereTables);
512 }
513 }
6a488035
TO
514 }
515
516 /**
fe482240 517 * Defines a new smart group.
6a488035 518 *
77c5b619
TO
519 * @param array $params
520 * Associative array of parameters.
6a488035 521 *
72b3a70c
CW
522 * @return CRM_Contact_BAO_Group|NULL
523 * The new group BAO (if created)
6a488035
TO
524 */
525 public static function createSmartGroup(&$params) {
a7488080 526 if (!empty($params['formValues'])) {
6a488035
TO
527 $ssParams = $params;
528 unset($ssParams['id']);
529 if (isset($ssParams['saved_search_id'])) {
530 $ssParams['id'] = $ssParams['saved_search_id'];
531 }
532
533 $savedSearch = CRM_Contact_BAO_SavedSearch::create($params);
534
535 $params['saved_search_id'] = $savedSearch->id;
536 }
537 else {
538 return NULL;
539 }
540
541 return self::create($params);
542 }
543
544 /**
fe482240 545 * Update the is_active flag in the db.
6a488035 546 *
77c5b619
TO
547 * @param int $id
548 * Id of the database record.
549 * @param bool $isActive
550 * Value we want to set the is_active field.
6a488035 551 *
16b10e64 552 * @return CRM_Core_DAO|null
3f8d2862 553 * DAO object on success, NULL otherwise
6a488035 554 */
00be9182 555 public static function setIsActive($id, $isActive) {
6a488035
TO
556 return CRM_Core_DAO::setFieldValue('CRM_Contact_DAO_Group', $id, 'is_active', $isActive);
557 }
558
559 /**
100fef9d 560 * Build the condition to retrieve groups.
6a488035 561 *
77c5b619
TO
562 * @param string $groupType
563 * Type of group(Access/Mailing) OR the key of the group.
3f8d2862 564 * @param bool $excludeHidden exclude hidden groups.
6a488035 565 *
a6c01b45 566 * @return string
6a488035 567 */
00be9182 568 public static function groupTypeCondition($groupType = NULL, $excludeHidden = TRUE) {
6a488035
TO
569 $value = NULL;
570 if ($groupType == 'Mailing') {
571 $value = CRM_Core_DAO::VALUE_SEPARATOR . '2' . CRM_Core_DAO::VALUE_SEPARATOR;
572 }
573 elseif ($groupType == 'Access') {
574 $value = CRM_Core_DAO::VALUE_SEPARATOR . '1' . CRM_Core_DAO::VALUE_SEPARATOR;
575 }
9b873358 576 elseif (!empty($groupType)) {
6a488035
TO
577 // ie we have been given the group key
578 $value = CRM_Core_DAO::VALUE_SEPARATOR . $groupType . CRM_Core_DAO::VALUE_SEPARATOR;
579 }
580
581 $condition = NULL;
582 if ($excludeHidden) {
583 $condition = "is_hidden = 0";
584 }
585
586 if ($value) {
587 if ($condition) {
588 $condition .= " AND group_type LIKE '%$value%'";
589 }
590 else {
591 $condition = "group_type LIKE '%$value%'";
592 }
593 }
594
595 return $condition;
596 }
597
47c89d6b 598 /**
fe482240 599 * Get permission relevant clauses.
47c89d6b
EM
600 * CRM-12209
601 *
aaac0e0b
EM
602 * @param bool $force
603 *
47c89d6b
EM
604 * @return array
605 */
aaac0e0b
EM
606 public static function getPermissionClause($force = FALSE) {
607 static $clause = 1;
47c89d6b 608 static $retrieved = FALSE;
481a74f4 609 if ((!$retrieved || $force) && !CRM_Core_Permission::check('view all contacts') && !CRM_Core_Permission::check('edit all contacts')) {
47c89d6b
EM
610 //get the allowed groups for the current user
611 $groups = CRM_ACL_API::group(CRM_ACL_API::VIEW);
612 if (!empty($groups)) {
613 $groupList = implode(', ', array_values($groups));
614 $clause = "groups.id IN ( $groupList ) ";
615 }
aaac0e0b
EM
616 else {
617 $clause = '1 = 0';
618 }
47c89d6b
EM
619 }
620 $retrieved = TRUE;
621 return $clause;
622 }
623
86538308
EM
624 /**
625 * @return string
626 */
6a488035
TO
627 public function __toString() {
628 return $this->title;
629 }
630
631 /**
632 * This function create the hidden smart group when user perform
b44e3f84 633 * contact search and want to send mailing to search contacts.
6a488035 634 *
77c5b619
TO
635 * @param array $params
636 * ( reference ) an assoc array of name/value pairs.
6a488035 637 *
a6c01b45
CW
638 * @return array
639 * ( smartGroupId, ssId ) smart group id and saved search id
6a488035 640 */
00be9182 641 public static function createHiddenSmartGroup($params) {
6a488035
TO
642 $ssId = CRM_Utils_Array::value('saved_search_id', $params);
643
644 //add mapping record only for search builder saved search
645 $mappingId = NULL;
646 if ($params['search_context'] == 'builder') {
647 //save the mapping for search builder
648 if (!$ssId) {
649 //save record in mapping table
353ffa53 650 $temp = array();
6a488035 651 $mappingParams = array('mapping_type' => 'Search Builder');
353ffa53
TO
652 $mapping = CRM_Core_BAO_Mapping::add($mappingParams, $temp);
653 $mappingId = $mapping->id;
6a488035
TO
654 }
655 else {
656 //get the mapping id from saved search
657 $savedSearch = new CRM_Contact_BAO_SavedSearch();
658 $savedSearch->id = $ssId;
659 $savedSearch->find(TRUE);
660 $mappingId = $savedSearch->mapping_id;
661 }
662
663 //save mapping fields
664 CRM_Core_BAO_Mapping::saveMappingFields($params['form_values'], $mappingId);
665 }
666
667 //create/update saved search record.
668 $savedSearch = new CRM_Contact_BAO_SavedSearch();
669 $savedSearch->id = $ssId;
670 $savedSearch->form_values = serialize($params['form_values']);
671 $savedSearch->mapping_id = $mappingId;
672 $savedSearch->search_custom_id = CRM_Utils_Array::value('search_custom_id', $params);
673 $savedSearch->save();
674
675 $ssId = $savedSearch->id;
676 if (!$ssId) {
677 return NULL;
678 }
679
680 $smartGroupId = NULL;
a7488080 681 if (!empty($params['saved_search_id'])) {
6a488035
TO
682 $smartGroupId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $ssId, 'id', 'saved_search_id');
683 }
684 else {
685 //create group only when new saved search.
686 $groupParams = array(
687 'title' => "Hidden Smart Group {$ssId}",
688 'is_active' => CRM_Utils_Array::value('is_active', $params, 1),
689 'is_hidden' => CRM_Utils_Array::value('is_hidden', $params, 1),
690 'group_type' => CRM_Utils_Array::value('group_type', $params),
691 'visibility' => CRM_Utils_Array::value('visibility', $params),
692 'saved_search_id' => $ssId,
693 );
694
695 $smartGroup = self::create($groupParams);
696 $smartGroupId = $smartGroup->id;
697 }
698
699 return array($smartGroupId, $ssId);
700 }
701
702 /**
fe482240 703 * wrapper for ajax group selector.
6a488035 704 *
77c5b619
TO
705 * @param array $params
706 * Associated array for params record id.
6a488035 707 *
a6c01b45
CW
708 * @return array
709 * associated array of group list
16b10e64
CW
710 * -rp = rowcount
711 * -page= offset
d3e86119
TO
712 * @todo there seems little reason for the small number of functions that call this to pass in
713 * params that then need to be translated in this function since they are coding them when calling
6a488035 714 */
bca4d720 715 static public function getGroupListSelector(&$params) {
6a488035 716 // format the params
353ffa53 717 $params['offset'] = ($params['page'] - 1) * $params['rp'];
6a488035 718 $params['rowCount'] = $params['rp'];
353ffa53 719 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
6a488035
TO
720
721 // get groups
722 $groups = CRM_Contact_BAO_Group::getGroupList($params);
723
724 //skip total if we are making call to show only children
a7488080 725 if (empty($params['parent_id'])) {
6a488035
TO
726 // add total
727 $params['total'] = CRM_Contact_BAO_Group::getGroupCount($params);
728
729 // get all the groups
730 $allGroups = CRM_Core_PseudoConstant::allGroup();
731 }
732
733 // format params and add links
734 $groupList = array();
735 if (!empty($groups)) {
736 foreach ($groups as $id => $value) {
737 $groupList[$id]['group_id'] = $value['id'];
7d1ce072 738 $groupList[$id]['count'] = $value['count'];
6a488035 739 $groupList[$id]['group_name'] = $value['title'];
6a488035
TO
740
741 // append parent names if in search mode
8cc574cf 742 if (empty($params['parent_id']) && !empty($value['parents'])) {
6a488035
TO
743 $groupIds = explode(',', $value['parents']);
744 $title = array();
22e263ad 745 foreach ($groupIds as $gId) {
6a488035
TO
746 $title[] = $allGroups[$gId];
747 }
92fcb95f 748 $groupList[$id]['group_name'] .= '<div class="crm-row-parent-name"><em>' . ts('Child of') . '</em>: ' . implode(', ', $title) . '</div>';
7f4b344c 749 $value['class'] = array_diff($value['class'], array('crm-row-parent'));
6a488035 750 }
7f4b344c
CW
751 $value['class'][] = 'crm-entity';
752 $groupList[$id]['class'] = $value['id'] . ',' . implode(' ', $value['class']);
6a488035
TO
753
754 $groupList[$id]['group_description'] = CRM_Utils_Array::value('description', $value);
a7488080 755 if (!empty($value['group_type'])) {
6a488035
TO
756 $groupList[$id]['group_type'] = $value['group_type'];
757 }
758 else {
759 $groupList[$id]['group_type'] = '';
760 }
761 $groupList[$id]['visibility'] = $value['visibility'];
762 $groupList[$id]['links'] = $value['action'];
763 $groupList[$id]['org_info'] = CRM_Utils_Array::value('org_info', $value);
764 $groupList[$id]['created_by'] = CRM_Utils_Array::value('created_by', $value);
765
766 $groupList[$id]['is_parent'] = $value['is_parent'];
767 }
768 return $groupList;
769 }
770 }
771
772 /**
fe482240 773 * This function to get list of groups.
6a488035 774 *
77c5b619
TO
775 * @param array $params
776 * Associated array for params.
80ad33e7
EM
777 *
778 * @return array
6a488035 779 */
00be9182 780 public static function getGroupList(&$params) {
6a488035
TO
781 $config = CRM_Core_Config::singleton();
782
783 $whereClause = self::whereClause($params, FALSE);
784
785 //$this->pagerAToZ( $whereClause, $params );
786
787 if (!empty($params['rowCount']) &&
788 $params['rowCount'] > 0
789 ) {
790 $limit = " LIMIT {$params['offset']}, {$params['rowCount']} ";
791 }
792
793 $orderBy = ' ORDER BY groups.title asc';
21d32567
DL
794 if (!empty($params['sort'])) {
795 $orderBy = ' ORDER BY ' . CRM_Utils_Type::escape($params['sort'], 'String');
1d19a8f2
CW
796
797 // CRM-16905 - Sort by count cannot be done with sql
798 if (strpos($params['sort'], 'count') === 0) {
799 $orderBy = $limit = '';
800 }
6a488035
TO
801 }
802
803 $select = $from = $where = "";
804 $groupOrg = FALSE;
805 if (CRM_Core_Permission::check('administer Multiple Organizations') &&
806 CRM_Core_Permission::isMultisiteEnabled()
807 ) {
808 $select = ", contact.display_name as org_name, contact.id as org_id";
809 $from = " LEFT JOIN civicrm_group_organization gOrg
810 ON gOrg.group_id = groups.id
811 LEFT JOIN civicrm_contact contact
812 ON contact.id = gOrg.organization_id ";
813
814 //get the Organization ID
815 $orgID = CRM_Utils_Request::retrieve('oid', 'Positive', CRM_Core_DAO::$_nullObject);
816 if ($orgID) {
817 $where = " AND gOrg.organization_id = {$orgID}";
818 }
819
820 $groupOrg = TRUE;
821 }
822
823 $query = "
cbe32e2f 824 SELECT groups.*, createdBy.sort_name as created_by {$select}
6a488035 825 FROM civicrm_group groups
7f4b344c
CW
826 LEFT JOIN civicrm_contact createdBy
827 ON createdBy.id = groups.created_id
828 {$from}
6a488035 829 WHERE $whereClause {$where}
7f4b344c 830 GROUP BY groups.id
6a488035
TO
831 {$orderBy}
832 {$limit}";
833
834 $object = CRM_Core_DAO::executeQuery($query, $params, TRUE, 'CRM_Contact_DAO_Group');
835
836 //FIXME CRM-4418, now we are handling delete separately
837 //if we introduce 'delete for group' make sure to handle here.
838 $groupPermissions = array(CRM_Core_Permission::VIEW);
839 if (CRM_Core_Permission::check('edit groups')) {
840 $groupPermissions[] = CRM_Core_Permission::EDIT;
841 $groupPermissions[] = CRM_Core_Permission::DELETE;
842 }
843
844 // CRM-9936
845 $reservedPermission = CRM_Core_Permission::check('administer reserved groups');
846
847 $links = self::actionLinks();
848
849 $allTypes = CRM_Core_OptionGroup::values('group_type');
cbe32e2f 850 $values = $groupsToCount = array();
6a488035 851
e3c75a92 852 $visibility = CRM_Core_SelectValues::ufVisibility();
853
6a488035
TO
854 while ($object->fetch()) {
855 $permission = CRM_Contact_BAO_Group::checkPermission($object->id, $object->title);
0f8844a1 856 //@todo CRM-12209 introduced an ACL check in the whereClause function
857 // it may be that this checking is now obsolete - or that what remains
858 // should be removed to the whereClause (which is also accessed by getCount)
859
6a488035
TO
860 if ($permission) {
861 $newLinks = $links;
cbe32e2f
CW
862 $values[$object->id] = array(
863 'class' => array(),
864 'count' => '0',
865 );
6a488035 866 CRM_Core_DAO::storeValues($object, $values[$object->id]);
93abd831
CW
867 // Wrap with crm-editable. Not an ideal solution.
868 $values[$object->id]['title'] = '<span class="crm-editable crmf-title">' . $values[$object->id]['title'] . '</span>';
869
6a488035
TO
870 if ($object->saved_search_id) {
871 $values[$object->id]['title'] .= ' (' . ts('Smart Group') . ')';
872 // check if custom search, if so fix view link
873 $customSearchID = CRM_Core_DAO::getFieldValue(
874 'CRM_Contact_DAO_SavedSearch',
875 $object->saved_search_id,
876 'search_custom_id'
877 );
878
879 if ($customSearchID) {
880 $newLinks[CRM_Core_Action::VIEW]['url'] = 'civicrm/contact/search/custom';
881 $newLinks[CRM_Core_Action::VIEW]['qs'] = "reset=1&force=1&ssID={$object->saved_search_id}";
882 }
883 }
884
885 $action = array_sum(array_keys($newLinks));
886
887 // CRM-9936
888 if (array_key_exists('is_reserved', $object)) {
889 //if group is reserved and I don't have reserved permission, suppress delete/edit
890 if ($object->is_reserved && !$reservedPermission) {
891 $action -= CRM_Core_Action::DELETE;
892 $action -= CRM_Core_Action::UPDATE;
893 $action -= CRM_Core_Action::DISABLE;
894 }
895 }
896
6a488035
TO
897 if (array_key_exists('is_active', $object)) {
898 if ($object->is_active) {
899 $action -= CRM_Core_Action::ENABLE;
900 }
901 else {
7d644ac8 902 $values[$object->id]['class'][] = 'disabled';
6a488035
TO
903 $action -= CRM_Core_Action::VIEW;
904 $action -= CRM_Core_Action::DISABLE;
905 }
906 }
907
908 $action = $action & CRM_Core_Action::mask($groupPermissions);
909
e3c75a92 910 $values[$object->id]['visibility'] = $visibility[$values[$object->id]['visibility']];
911
cbe32e2f 912 $groupsToCount[$object->saved_search_id ? 'civicrm_group_contact_cache' : 'civicrm_group_contact'][] = $object->id;
7f4b344c 913
6a488035
TO
914 if (isset($values[$object->id]['group_type'])) {
915 $groupTypes = explode(CRM_Core_DAO::VALUE_SEPARATOR,
916 substr($values[$object->id]['group_type'], 1, -1)
917 );
918 $types = array();
919 foreach ($groupTypes as $type) {
920 $types[] = CRM_Utils_Array::value($type, $allTypes);
921 }
922 $values[$object->id]['group_type'] = implode(', ', $types);
923 }
924 $values[$object->id]['action'] = CRM_Core_Action::formLink($newLinks,
925 $action,
926 array(
927 'id' => $object->id,
928 'ssid' => $object->saved_search_id,
87dab4a4
AH
929 ),
930 ts('more'),
931 FALSE,
932 'group.selector.row',
933 'Group',
934 $object->id
6a488035
TO
935 );
936
937 // If group has children, add class for link to view children
ab8a593e 938 $values[$object->id]['is_parent'] = FALSE;
6a488035 939 if (array_key_exists('children', $values[$object->id])) {
7d644ac8 940 $values[$object->id]['class'][] = "crm-group-parent";
4eeb9a5b 941 $values[$object->id]['is_parent'] = TRUE;
6a488035
TO
942 }
943
944 // If group is a child, add child class
945 if (array_key_exists('parents', $values[$object->id])) {
7d644ac8 946 $values[$object->id]['class'][] = "crm-group-child";
6a488035
TO
947 }
948
949 if ($groupOrg) {
950 if ($object->org_id) {
951 $contactUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$object->org_id}");
952 $values[$object->id]['org_info'] = "<a href='{$contactUrl}'>{$object->org_name}</a>";
953 }
954 else {
955 $values[$object->id]['org_info'] = ''; // Empty cell
956 }
957 }
958 else {
959 $values[$object->id]['org_info'] = NULL; // Collapsed column if all cells are NULL
960 }
961 if ($object->created_id) {
962 $contactUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$object->created_id}");
963 $values[$object->id]['created_by'] = "<a href='{$contactUrl}'>{$object->created_by}</a>";
964 }
965 }
966 }
967
e96ee3a2 968 // Get group counts - executes one query for regular groups and another for smart groups
cbe32e2f 969 foreach ($groupsToCount as $table => $groups) {
e96ee3a2 970 $where = "g.group_id IN (" . implode(',', $groups) . ")";
b08455a1 971 if ($table == 'civicrm_group_contact') {
e96ee3a2 972 $where .= " AND g.status = 'Added'";
b08455a1 973 }
e96ee3a2
CW
974 // Exclude deleted contacts
975 $where .= " and c.id = g.contact_id AND c.is_deleted = 0";
976 $dao = CRM_Core_DAO::executeQuery("SELECT g.group_id, COUNT(g.id) as `count` FROM $table g, civicrm_contact c WHERE $where GROUP BY g.group_id");
22e263ad 977 while ($dao->fetch()) {
cbe32e2f
CW
978 $values[$dao->group_id]['count'] = $dao->count;
979 }
980 }
981
1d19a8f2
CW
982 // CRM-16905 - Sort by count cannot be done with sql
983 if (!empty($params['sort']) && strpos($params['sort'], 'count') === 0) {
984 usort($values, function($a, $b) {
985 return $a['count'] - $b['count'];
986 });
987 if (strpos($params['sort'], 'desc')) {
988 $values = array_reverse($values, TRUE);
989 }
990 return array_slice($values, $params['offset'], $params['rowCount']);
991 }
992
6a488035
TO
993 return $values;
994 }
995
996 /**
997 * This function to get hierarchical list of groups (parent followed by children)
998 *
77c5b619
TO
999 * @param array $groupIDs
1000 * Array of group ids.
80ad33e7 1001 *
e60f24eb 1002 * @param NULL $parents
80ad33e7
EM
1003 * @param string $spacer
1004 * @param bool $titleOnly
f828fa2c 1005 *
80ad33e7 1006 * @return array
6a488035 1007 */
2da40d21 1008 public static function getGroupsHierarchy(
f828fa2c 1009 $groupIDs,
90d1fee5 1010 $parents = NULL,
6a488035
TO
1011 $spacer = '<span class="child-indent"></span>',
1012 $titleOnly = FALSE
90d1fee5 1013 ) {
f828fa2c
DL
1014 if (empty($groupIDs)) {
1015 return array();
1016 }
1017
1018 $groupIdString = '(' . implode(',', array_keys($groupIDs)) . ')';
90d1fee5 1019 // <span class="child-icon"></span>
1020 // need to return id, title (w/ spacer), description, visibility
1021
1022 // We need to build a list of tags ordered by hierarchy and sorted by
b44e3f84 1023 // name. The hierarchy will be communicated by an accumulation of
90d1fee5 1024 // separators in front of the name to give it a visual offset.
1025 // Instead of recursively making mysql queries, we'll make one big
b44e3f84 1026 // query and build the hierarchy with the algorithm below.
90d1fee5 1027 $groups = array();
1028 $args = array(1 => array($groupIdString, 'String'));
1029 $query = "
f828fa2c
DL
1030SELECT id, title, description, visibility, parents
1031FROM civicrm_group
1032WHERE id IN $groupIdString
1033";
90d1fee5 1034 if ($parents) {
1035 // group can have > 1 parent so parents may be comma separated list (eg. '1,2,5'). We just grab and match on 1st parent.
1036 $parentArray = explode(',', $parents);
1037 $parent = $parentArray[0];
1038 $args[2] = array($parent, 'Integer');
1039 $query .= " AND SUBSTRING_INDEX(parents, ',', 1) = %2";
1040 }
1041 $query .= " ORDER BY title";
1042 $dao = CRM_Core_DAO::executeQuery($query, $args);
1043
1044 // Sort the groups into the correct storage by the parent
1045 // $roots represent the current leaf nodes that need to be checked for
1046 // children. $rows represent the unplaced nodes
1047 $roots = $rows = $allGroups = array();
1048 while ($dao->fetch()) {
1049 $allGroups[$dao->id] = array(
1050 'title' => $dao->title,
1051 'visibility' => $dao->visibility,
21dfd5f5 1052 'description' => $dao->description,
90d1fee5 1053 );
1054
1055 if ($dao->parents == $parents) {
1056 $roots[] = array(
1057 'id' => $dao->id,
1058 'prefix' => '',
21dfd5f5 1059 'title' => $dao->title,
90d1fee5 1060 );
1061 }
1062 else {
1063 // group can have > 1 parent so $dao->parents may be comma separated list (eg. '1,2,5'). Grab and match on 1st parent.
1064 $parentArray = explode(',', $dao->parents);
1065 $parent = $parentArray[0];
1066 $rows[] = array(
1067 'id' => $dao->id,
1068 'prefix' => '',
1069 'title' => $dao->title,
21dfd5f5 1070 'parents' => $parent,
90d1fee5 1071 );
1072 }
1073 }
1074 $dao->free();
1075 // While we have nodes left to build, shift the first (alphabetically)
1076 // node of the list, place it in our groups list and loop through the
1077 // list of unplaced nodes to find its children. We make a copy to
1078 // iterate through because we must modify the unplaced nodes list
1079 // during the loop.
1080 while (count($roots)) {
1081 $new_roots = array();
1082 $current_rows = $rows;
1083 $root = array_shift($roots);
1084 $groups[$root['id']] = array($root['prefix'], $root['title']);
1085
1086 // As you find the children, append them to the end of the new set
1087 // of roots (maintain alphabetical ordering). Also remove the node
1088 // from the set of unplaced nodes.
1089 if (is_array($current_rows)) {
1090 foreach ($current_rows as $key => $row) {
1091 if ($row['parents'] == $root['id']) {
1092 $new_roots[] = array(
1093 'id' => $row['id'],
1094 'prefix' => $groups[$root['id']][0] . $spacer,
21dfd5f5 1095 'title' => $row['title'],
90d1fee5 1096 );
1097 unset($rows[$key]);
1098 }
1099 }
1100 }
1101
1102 //As a group, insert the new roots into the beginning of the roots
1103 //list. This maintains the hierarchical ordering of the tags.
1104 $roots = array_merge($new_roots, $roots);
1105 }
1106
1107 // below is the redundant looping to ensure child groups are populated in the case where user does not have
1108 // access to parent groups ( esp. using ACL permissions and logged in user can assess only child groups )
1109 foreach ($rows as $value) {
1110 $groups[$value['id']] = array($value['prefix'], $value['title']);
1111 }
1112 // Prefix titles with the calcuated spacing to give the visual
1113 // appearance of ordering when transformed into HTML in the form layer. Add description and visibility.
1114 $groupsReturn = array();
1115 foreach ($groups as $key => $value) {
1116 if ($titleOnly) {
1117 $groupsReturn[$key] = $value[0] . $value[1];
1118 }
1119 else {
1120 $groupsReturn[$key] = array(
1121 'title' => $value[0] . $value[1],
1122 'description' => $allGroups[$key]['description'],
1123 'visibility' => $allGroups[$key]['visibility'],
1124 );
1125 }
1126 }
1127
1128 return $groupsReturn;
6a488035
TO
1129 }
1130
86538308 1131 /**
c490a46a 1132 * @param array $params
86538308 1133 *
e60f24eb 1134 * @return NULL|string
86538308 1135 */
00be9182 1136 public static function getGroupCount(&$params) {
6a488035
TO
1137 $whereClause = self::whereClause($params, FALSE);
1138 $query = "SELECT COUNT(*) FROM civicrm_group groups";
1139
a7488080 1140 if (!empty($params['created_by'])) {
6a488035
TO
1141 $query .= "
1142INNER JOIN civicrm_contact createdBy
1143 ON createdBy.id = groups.created_id";
1144 }
1145 $query .= "
1146WHERE {$whereClause}";
1147 return CRM_Core_DAO::singleValueQuery($query, $params);
1148 }
1149
47c89d6b 1150 /**
fe482240 1151 * Generate permissioned where clause for group search.
c490a46a 1152 * @param array $params
47c89d6b
EM
1153 * @param bool $sortBy
1154 * @param bool $excludeHidden
1155 *
1156 * @return string
1157 */
00be9182 1158 public static function whereClause(&$params, $sortBy = TRUE, $excludeHidden = TRUE) {
6a488035 1159 $values = array();
6a488035
TO
1160 $title = CRM_Utils_Array::value('title', $params);
1161 if ($title) {
1162 $clauses[] = "groups.title LIKE %1";
1163 if (strpos($title, '%') !== FALSE) {
1164 $params[1] = array($title, 'String', FALSE);
1165 }
1166 else {
1167 $params[1] = array($title, 'String', TRUE);
1168 }
1169 }
1170
1171 $groupType = CRM_Utils_Array::value('group_type', $params);
1172 if ($groupType) {
1173 $types = explode(',', $groupType);
1174 if (!empty($types)) {
353ffa53 1175 $clauses[] = 'groups.group_type LIKE %2';
6a488035 1176 $typeString = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $types) . CRM_Core_DAO::VALUE_SEPARATOR;
353ffa53 1177 $params[2] = array($typeString, 'String', TRUE);
6a488035
TO
1178 }
1179 }
1180
1181 $visibility = CRM_Utils_Array::value('visibility', $params);
1182 if ($visibility) {
1183 $clauses[] = 'groups.visibility = %3';
1184 $params[3] = array($visibility, 'String');
1185 }
1186
1187 $groupStatus = CRM_Utils_Array::value('status', $params);
1188 if ($groupStatus) {
1189 switch ($groupStatus) {
1190 case 1:
1191 $clauses[] = 'groups.is_active = 1';
1192 $params[4] = array($groupStatus, 'Integer');
1193 break;
1194
1195 case 2:
1196 $clauses[] = 'groups.is_active = 0';
1197 $params[4] = array($groupStatus, 'Integer');
1198 break;
1199
1200 case 3:
1201 $clauses[] = '(groups.is_active = 0 OR groups.is_active = 1 )';
1202 break;
1203 }
1204 }
1205
1206 $parentsOnly = CRM_Utils_Array::value('parentsOnly', $params);
1207 if ($parentsOnly) {
1208 $clauses[] = 'groups.parents IS NULL';
1209 }
1210
1211 // only show child groups of a specific parent group
1212 $parent_id = CRM_Utils_Array::value('parent_id', $params);
1213 if ($parent_id) {
1214 $clauses[] = 'groups.id IN (SELECT child_group_id FROM civicrm_group_nesting WHERE parent_group_id = %5)';
1215 $params[5] = array($parent_id, 'Integer');
1216 }
1217
1218 if ($createdBy = CRM_Utils_Array::value('created_by', $params)) {
1219 $clauses[] = "createdBy.sort_name LIKE %6";
1220 if (strpos($createdBy, '%') !== FALSE) {
1221 $params[6] = array($createdBy, 'String', FALSE);
1222 }
1223 else {
1224 $params[6] = array($createdBy, 'String', TRUE);
1225 }
1226 }
1227
6a488035
TO
1228 if (empty($clauses)) {
1229 $clauses[] = 'groups.is_active = 1';
1230 }
1231
1232 if ($excludeHidden) {
1233 $clauses[] = 'groups.is_hidden = 0';
1234 }
33421d01 1235
aaac0e0b 1236 $clauses[] = self::getPermissionClause();
6a488035
TO
1237
1238 return implode(' AND ', $clauses);
1239 }
1240
1241 /**
fe482240 1242 * Define action links.
6a488035 1243 *
a6c01b45
CW
1244 * @return array
1245 * array of action links
6a488035 1246 */
00be9182 1247 public static function actionLinks() {
6a488035
TO
1248 $links = array(
1249 CRM_Core_Action::VIEW => array(
1250 'name' => ts('Contacts'),
1251 'url' => 'civicrm/group/search',
1252 'qs' => 'reset=1&force=1&context=smog&gid=%%id%%',
1253 'title' => ts('Group Contacts'),
1254 ),
1255 CRM_Core_Action::UPDATE => array(
1256 'name' => ts('Settings'),
1257 'url' => 'civicrm/group',
1258 'qs' => 'reset=1&action=update&id=%%id%%',
1259 'title' => ts('Edit Group'),
1260 ),
1261 CRM_Core_Action::DISABLE => array(
1262 'name' => ts('Disable'),
4d17a233 1263 'ref' => 'crm-enable-disable',
6a488035
TO
1264 'title' => ts('Disable Group'),
1265 ),
1266 CRM_Core_Action::ENABLE => array(
1267 'name' => ts('Enable'),
4d17a233 1268 'ref' => 'crm-enable-disable',
6a488035
TO
1269 'title' => ts('Enable Group'),
1270 ),
1271 CRM_Core_Action::DELETE => array(
1272 'name' => ts('Delete'),
1273 'url' => 'civicrm/group',
1274 'qs' => 'reset=1&action=delete&id=%%id%%',
1275 'title' => ts('Delete Group'),
1276 ),
1277 );
1278
1279 return $links;
1280 }
1281
86538308
EM
1282 /**
1283 * @param $whereClause
100fef9d 1284 * @param array $whereParams
86538308
EM
1285 *
1286 * @return string
1287 */
00be9182 1288 public function pagerAtoZ($whereClause, $whereParams) {
6a488035
TO
1289 $query = "
1290 SELECT DISTINCT UPPER(LEFT(groups.title, 1)) as sort_name
1291 FROM civicrm_group groups
1292 WHERE $whereClause
1293 ORDER BY LEFT(groups.title, 1)
1294 ";
1295 $dao = CRM_Core_DAO::executeQuery($query, $whereParams);
1296
1297 return CRM_Utils_PagerAToZ::getAToZBar($dao, $this->_sortByCharacter, TRUE);
1298 }
96025800 1299
6a488035 1300}