CRM-18437 -- No expand icons in manage groups screen
[civicrm-core.git] / CRM / Group / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 *
33 */
34
35/**
36 * This class contains the functions that are called using AJAX (jQuery)
37 */
38class CRM_Group_Page_AJAX {
1cd3ffa9
EM
39 /**
40 * Get list of groups.
1cd3ffa9 41 */
00be9182 42 public static function getGroupList() {
3b448eca 43 $params = $_GET;
5c2ad8fb 44 if (isset($params['parent_id'])) {
6a488035 45 // requesting child groups for a given parent
03e04002 46 $params['page'] = 1;
353ffa53 47 $params['rp'] = 0;
6a488035
TO
48 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
49
ecdef330 50 CRM_Utils_JSON::output($groups);
7f0ee582
KJ
51 }
52 else {
9c3f979f 53 $params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
6a488035 54
d4b01b74 55 $optionalParameters = array(
56 'parentsOnly' => 'Integer',
57 'showOrgInfo' => 'Boolean',
58 );
59 $params += CRM_Core_Page_AJAX::validateParams(array(), $optionalParameters);
60
6a488035
TO
61 // get group list
62 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
63
8693efdb 64 // if no groups found with parent-child hierarchy and logged in user say can view child groups only (an ACL case),
03e04002 65 // go ahead with flat hierarchy, CRM-12225
8693efdb
DS
66 if (empty($groups)) {
67 $groupsAccessible = CRM_Core_PseudoConstant::group();
353ffa53 68 $parentsOnly = CRM_Utils_Array::value('parentsOnly', $params);
8693efdb
DS
69 if (!empty($groupsAccessible) && $parentsOnly) {
70 // recompute group list with flat hierarchy
71 $params['parentsOnly'] = 0;
72 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
73 }
74 }
75
3b448eca 76 CRM_Utils_JSON::output($groups);
6a488035
TO
77 }
78 }
96025800 79
6a488035 80}