CRM-19832: Ensure that searchTasks hook get invoked once
[civicrm-core.git] / CRM / Activity / Task.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * @package CRM
30 * @copyright CiviCRM LLC (c) 2004-2016
31 */
32
33 /**
34 * Class to represent the actions that can be performed on a group of contacts used by the search forms.
35 */
36 class CRM_Activity_Task {
37 const
38 DELETE_ACTIVITIES = 1,
39 PRINT_ACTIVITIES = 2,
40 EXPORT_ACTIVITIES = 3,
41 BATCH_ACTIVITIES = 4,
42 EMAIL_CONTACTS = 5,
43 EMAIL_SMS = 6;
44
45 /**
46 * The task array.
47 *
48 * @var array
49 */
50 static $_tasks = NULL;
51
52 /**
53 * The optional task array.
54 *
55 * @var array
56 */
57 static $_optionalTasks = NULL;
58
59 /**
60 * These tasks are the core set of tasks that the user can perform
61 * on a contact / group of contacts.
62 *
63 * @return array
64 * the set of tasks for a group of contacts
65 */
66 public static function &tasks() {
67 if (!(self::$_tasks)) {
68 self::$_tasks = array(
69 1 => array(
70 'title' => ts('Delete activities'),
71 'class' => 'CRM_Activity_Form_Task_Delete',
72 'result' => FALSE,
73 ),
74 2 => array(
75 'title' => ts('Print selected rows'),
76 'class' => 'CRM_Activity_Form_Task_Print',
77 'result' => FALSE,
78 ),
79 3 => array(
80 'title' => ts('Export activities'),
81 'class' => array(
82 'CRM_Export_Form_Select',
83 'CRM_Export_Form_Map',
84 ),
85 'result' => FALSE,
86 ),
87 4 => array(
88 'title' => ts('Update multiple activities'),
89 'class' => array(
90 'CRM_Activity_Form_Task_PickProfile',
91 'CRM_Activity_Form_Task_Batch',
92 ),
93 'result' => FALSE,
94 ),
95 5 => array(
96 'title' => ts('Email - send now'),
97 'class' => array(
98 'CRM_Activity_Form_Task_PickOption',
99 'CRM_Activity_Form_Task_Email',
100 ),
101 'result' => FALSE,
102 ),
103 6 => array(
104 'title' => ts('SMS - send reply'),
105 'class' => 'CRM_Activity_Form_Task_SMS',
106 'result' => FALSE,
107 ),
108 7 => array(
109 'title' => ts('Tag - add to activities'),
110 'class' => 'CRM_Activity_Form_Task_AddToTag',
111 'result' => FALSE,
112 ),
113 8 => array(
114 'title' => ts('Tag - remove from activities'),
115 'class' => 'CRM_Activity_Form_Task_RemoveFromTag',
116 'result' => FALSE,
117 ),
118 );
119
120 $config = CRM_Core_Config::singleton();
121 if (in_array('CiviCase', $config->enableComponents)) {
122 if (CRM_Core_Permission::check('access all cases and activities') ||
123 CRM_Core_Permission::check('access my cases and activities')
124 ) {
125 self::$_tasks[6] = array(
126 'title' => ts('File on case'),
127 'class' => 'CRM_Activity_Form_Task_FileOnCase',
128 'result' => FALSE,
129 );
130 }
131 }
132
133 // CRM-4418, check for delete
134 if (!CRM_Core_Permission::check('delete activities')) {
135 unset(self::$_tasks[1]);
136 }
137
138 CRM_Utils_Hook::searchTasks('activity', self::$_tasks);
139 asort(self::$_tasks);
140 }
141
142 return self::$_tasks;
143 }
144
145 /**
146 * These tasks are the core set of task titles on activity.
147 *
148 * @return array
149 * the set of task titles
150 */
151 public static function &taskTitles() {
152 self::tasks();
153 $titles = array();
154 foreach (self::$_tasks as $id => $value) {
155 $titles[$id] = $value['title'];
156 }
157 return $titles;
158 }
159
160 /**
161 * Show tasks selectively based on the permission level of the user.
162 *
163 * @param int $permission
164 *
165 * @return array
166 * set of tasks that are valid for the user
167 */
168 public static function &permissionedTaskTitles($permission) {
169 $tasks = array();
170 if ($permission == CRM_Core_Permission::EDIT) {
171 $tasks = self::taskTitles();
172 }
173 else {
174 $tasks = array(
175 3 => self::$_tasks[3]['title'],
176 );
177
178 //CRM-4418,
179 if (CRM_Core_Permission::check('delete activities')) {
180 $tasks[1] = self::$_tasks[1]['title'];
181 }
182 }
183 return $tasks;
184 }
185
186 /**
187 * These tasks are the core set of tasks that the user can perform on activity.
188 *
189 * @param int $value
190 *
191 * @return array
192 * the set of tasks for a group of activity
193 */
194 public static function getTask($value) {
195 self::tasks();
196 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
197 // make the print task by default
198 $value = 2;
199 }
200 return array(
201 self::$_tasks[$value]['class'],
202 self::$_tasks[$value]['result'],
203 );
204 }
205
206 }