CRM-21809: 'Advance search' group by issue
[civicrm-core.git] / CRM / Case / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33
34/**
67d19299 35 * Class to represent the actions that can be performed on a group of contacts.
6a488035 36 *
67d19299 37 * Used by the search forms
6a488035
TO
38 */
39class CRM_Case_Task {
7da04cde 40 const DELETE_CASES = 1, PRINT_CASES = 2, EXPORT_CASES = 3, RESTORE_CASES = 4;
6a488035
TO
41
42 /**
100fef9d 43 * The task array
6a488035
TO
44 *
45 * @var array
6a488035
TO
46 */
47 static $_tasks = NULL;
48
49 /**
100fef9d 50 * The optional task array
6a488035
TO
51 *
52 * @var array
6a488035
TO
53 */
54 static $_optionalTasks = NULL;
55
56 /**
57 * These tasks are the core set of tasks that the user can perform
58 * on a contact / group of contacts
59 *
a6c01b45
CW
60 * @return array
61 * the set of tasks for a group of contacts
6a488035 62 */
00be9182 63 public static function &tasks() {
6a488035
TO
64 if (!self::$_tasks) {
65 self::$_tasks = array(
23546577 66 1 => array(
7f82e636 67 'title' => ts('Delete cases'),
6a488035
TO
68 'class' => 'CRM_Case_Form_Task_Delete',
69 'result' => FALSE,
70 ),
23546577 71 2 => array(
7f82e636 72 'title' => ts('Print selected rows'),
6a488035
TO
73 'class' => 'CRM_Case_Form_Task_Print',
74 'result' => FALSE,
75 ),
23546577 76 3 => array(
7f82e636 77 'title' => ts('Export cases'),
6a488035
TO
78 'class' => array(
79 'CRM_Export_Form_Select',
80 'CRM_Export_Form_Map',
81 ),
82 'result' => FALSE,
83 ),
23546577 84 4 => array(
7f82e636 85 'title' => ts('Restore cases'),
6a488035
TO
86 'class' => 'CRM_Case_Form_Task_Restore',
87 'result' => FALSE,
88 ),
8ffa3b7c 89 5 => array(
dfb8b1ac 90 'title' => ts('Print/merge Document'),
13e6f3e9 91 'class' => 'CRM_Case_Form_Task_PDF',
8ffa3b7c 92 'result' => FALSE,
93 ),
888da08c
MW
94 6 => array(
95 'title' => ts('Update multiple cases'),
96 'class' => array(
97 'CRM_Case_Form_Task_PickProfile',
98 'CRM_Case_Form_Task_Batch',
99 ),
100 'result' => FALSE,
101 ),
6a488035 102 );
4d73a5a7 103
6a488035
TO
104 //CRM-4418, check for delete
105 if (!CRM_Core_Permission::check('delete in CiviCase')) {
106 unset(self::$_tasks[1]);
107 }
4d73a5a7 108
109 CRM_Utils_Hook::searchTasks('case', self::$_tasks);
110 asort(self::$_tasks);
6a488035
TO
111 }
112
6a488035
TO
113 return self::$_tasks;
114 }
115
116 /**
fe482240 117 * These tasks are the core set of task titles.
6a488035 118 *
a6c01b45
CW
119 * @return array
120 * the set of task titles
6a488035 121 */
00be9182 122 public static function &taskTitles() {
6a488035
TO
123 self::tasks();
124 $titles = array();
125 foreach (self::$_tasks as $id => $value) {
e341bbee 126 $titles[$id] = $value['title'];
6a488035
TO
127 }
128 return $titles;
129 }
130
131 /**
fe482240 132 * These tasks get added based on the context the user is in.
6a488035 133 *
a6c01b45
CW
134 * @return array
135 * the set of optional tasks for a group of contacts
6a488035 136 */
00be9182 137 public static function &optionalTaskTitle() {
6a488035
TO
138 $tasks = array();
139 return $tasks;
140 }
141
142 /**
fe482240 143 * Show tasks selectively based on the permission level.
6a488035
TO
144 * of the user
145 *
146 * @param int $permission
147 *
a6c01b45
CW
148 * @return array
149 * set of tasks that are valid for the user
6a488035 150 */
00be9182 151 public static function &permissionedTaskTitles($permission) {
6a488035
TO
152 $tasks = array();
153 if (($permission == CRM_Core_Permission::EDIT)
154 || CRM_Core_Permission::check('access all cases and activities')
155 || CRM_Core_Permission::check('access my cases and activities')
156 ) {
157 $tasks = self::taskTitles();
158 }
159 else {
160 $tasks = array(
161 3 => self::$_tasks[3]['title'],
162 );
163 //CRM-4418,
164 if (CRM_Core_Permission::check('delete in CiviCase')) {
165 $tasks[1] = self::$_tasks[1]['title'];
166 }
167 }
168 return $tasks;
169 }
170
171 /**
fe482240 172 * These tasks are the core set of tasks.
6a488035
TO
173 *
174 * @param int $value
175 *
a6c01b45
CW
176 * @return array
177 * the set of tasks for a group of contacts
6a488035 178 */
00be9182 179 public static function getTask($value) {
6a488035
TO
180 self::tasks();
181 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
182 // make the print task by default
183 $value = 2;
184 }
185
186 return array(
187 self::$_tasks[$value]['class'],
188 self::$_tasks[$value]['result'],
189 );
190 }
96025800 191
6a488035 192}