Update copyright date for 2020
[civicrm-core.git] / CRM / Group / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
f299f7db 6 | Copyright CiviCRM LLC (c) 2004-2020 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
f299f7db 31 * @copyright CiviCRM LLC (c) 2004-2020
6a488035
TO
32 *
33 */
34
35/**
36 * This class contains the functions that are called using AJAX (jQuery)
37 */
38class CRM_Group_Page_AJAX {
7e8c8317 39
1cd3ffa9
EM
40 /**
41 * Get list of groups.
1cd3ffa9 42 */
00be9182 43 public static function getGroupList() {
3b448eca 44 $params = $_GET;
5c2ad8fb 45 if (isset($params['parent_id'])) {
6a488035 46 // requesting child groups for a given parent
03e04002 47 $params['page'] = 1;
353ffa53 48 $params['rp'] = 0;
6a488035 49 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
7f0ee582
KJ
50 }
51 else {
be2fb01f
CW
52 $requiredParams = [];
53 $optionalParams = [
5b7b228c 54 'title' => 'String',
55 'created_by' => 'String',
56 'group_type' => 'String',
57 'visibility' => 'String',
fecb40f5 58 'component_mode' => 'String',
5b7b228c 59 'status' => 'Integer',
d4b01b74 60 'parentsOnly' => 'Integer',
61 'showOrgInfo' => 'Boolean',
5b7b228c 62 // Ignore 'parent_id' as that case is handled above
be2fb01f 63 ];
5b7b228c 64 $params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
65 $params += CRM_Core_Page_AJAX::validateParams($requiredParams, $optionalParams);
d4b01b74 66
6a488035
TO
67 // get group list
68 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
69
8693efdb 70 // if no groups found with parent-child hierarchy and logged in user say can view child groups only (an ACL case),
03e04002 71 // go ahead with flat hierarchy, CRM-12225
8693efdb
DS
72 if (empty($groups)) {
73 $groupsAccessible = CRM_Core_PseudoConstant::group();
353ffa53 74 $parentsOnly = CRM_Utils_Array::value('parentsOnly', $params);
8693efdb
DS
75 if (!empty($groupsAccessible) && $parentsOnly) {
76 // recompute group list with flat hierarchy
77 $params['parentsOnly'] = 0;
78 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
79 }
80 }
46d33c7a 81 }
8693efdb 82
46d33c7a 83 if (!empty($_GET['is_unit_test'])) {
84 return $groups;
6a488035 85 }
46d33c7a 86
87 CRM_Utils_JSON::output($groups);
6a488035 88 }
96025800 89
6a488035 90}