Merge pull request #8254 from eileenmcnaughton/4.7.7-rc
[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 {
6a488035 53
3b448eca 54 $sortMapper = array();
cd83e08f 55 $columns = CRM_Utils_Array::value('columns', $params, array());
56 foreach ($columns as $key => $value) {
3b448eca 57 $sortMapper[$key] = $value['data'];
5bf58d02 58 }
3b448eca
JL
59
60 $offset = isset($_GET['start']) ? CRM_Utils_Type::escape($_GET['start'], 'Integer') : 0;
61 $rowCount = isset($_GET['length']) ? CRM_Utils_Type::escape($_GET['length'], 'Integer') : 25;
62 $sort = isset($_GET['order'][0]['column']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_GET['order'][0]['column'], 'Integer'), $sortMapper) : NULL;
63 $sortOrder = isset($_GET['order'][0]['dir']) ? CRM_Utils_Type::escape($_GET['order'][0]['dir'], 'String') : 'asc';
6a488035
TO
64
65 if ($sort && $sortOrder) {
66 $params['sortBy'] = $sort . ' ' . $sortOrder;
67 }
68
69 $params['page'] = ($offset / $rowCount) + 1;
70 $params['rp'] = $rowCount;
71
72 // get group list
73 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
74
8693efdb 75 // if no groups found with parent-child hierarchy and logged in user say can view child groups only (an ACL case),
03e04002 76 // go ahead with flat hierarchy, CRM-12225
8693efdb
DS
77 if (empty($groups)) {
78 $groupsAccessible = CRM_Core_PseudoConstant::group();
353ffa53 79 $parentsOnly = CRM_Utils_Array::value('parentsOnly', $params);
8693efdb
DS
80 if (!empty($groupsAccessible) && $parentsOnly) {
81 // recompute group list with flat hierarchy
82 $params['parentsOnly'] = 0;
83 $groups = CRM_Contact_BAO_Group::getGroupListSelector($params);
84 }
85 }
86
3b448eca 87 CRM_Utils_JSON::output($groups);
6a488035
TO
88 }
89 }
96025800 90
6a488035 91}