Merge pull request #5910 from eileenmcnaughton/CRM-16573
[civicrm-core.git] / CRM / Event / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * class to represent the actions that can be performed on a group of contacts
38 * used by the search forms
39 *
40 */
41class CRM_Event_Task {
42 // Value for SAVE_SEARCH is set to 13 in accordance with CRM_Contact_Task::SAVE_SEARCH
7da04cde 43 const DELETE_EVENTS = 1, PRINT_EVENTS = 2, EXPORT_EVENTS = 3, BATCH_EVENTS = 4, CANCEL_REGISTRATION = 5, EMAIL_CONTACTS = 6,
353ffa53
TO
44 // Value for LABEL_CONTACTS is set to 16 in accordance with CRM_Contact_Task::LABEL_CONTACTS
45 SAVE_SEARCH = 13, SAVE_SEARCH_UPDATE = 14, PARTICIPANT_STATUS = 15,
46 LABEL_CONTACTS = 16, GROUP_CONTACTS = 20;
6a488035
TO
47
48 /**
100fef9d 49 * The task array
6a488035
TO
50 *
51 * @var array
6a488035
TO
52 */
53 static $_tasks = NULL;
54
55 /**
100fef9d 56 * The optional task array
6a488035
TO
57 *
58 * @var array
6a488035
TO
59 */
60 static $_optionalTasks = NULL;
61
62 /**
63 * These tasks are the core set of tasks that the user can perform
64 * on a contact / group of contacts
65 *
a6c01b45
CW
66 * @return array
67 * the set of tasks for a group of contacts
6a488035 68 */
00be9182 69 public static function &tasks() {
6a488035 70 if (!(self::$_tasks)) {
0479b4c8 71 self::$_tasks = array(
353ffa53
TO
72 1 => array(
73 'title' => ts('Delete Participants'),
6a488035
TO
74 'class' => 'CRM_Event_Form_Task_Delete',
75 'result' => FALSE,
76 ),
23546577
CW
77 2 => array(
78 'title' => ts('Print Selected Rows'),
6a488035
TO
79 'class' => 'CRM_Event_Form_Task_Print',
80 'result' => FALSE,
81 ),
23546577
CW
82 3 => array(
83 'title' => ts('Export Participants'),
6a488035
TO
84 'class' => array(
85 'CRM_Export_Form_Select',
86 'CRM_Export_Form_Map',
87 ),
88 'result' => FALSE,
89 ),
23546577
CW
90 4 => array(
91 'title' => ts('Batch Update Participants Via Profile'),
6a488035
TO
92 'class' => array(
93 'CRM_Event_Form_Task_PickProfile',
94 'CRM_Event_Form_Task_Batch',
95 ),
96 'result' => TRUE,
97 ),
23546577
CW
98 5 => array(
99 'title' => ts('Cancel Registration'),
6a488035
TO
100 'class' => 'CRM_Event_Form_Task_Cancel',
101 'result' => FALSE,
102 ),
23546577
CW
103 6 => array(
104 'title' => ts('Send Email to Contacts'),
6a488035
TO
105 'class' => 'CRM_Event_Form_Task_Email',
106 'result' => TRUE,
107 ),
23546577
CW
108 13 => array(
109 'title' => ts('New Smart Group'),
6a488035
TO
110 'class' => 'CRM_Event_Form_Task_SaveSearch',
111 'result' => TRUE,
112 ),
23546577
CW
113 14 => array(
114 'title' => ts('Update Smart Group'),
6a488035
TO
115 'class' => 'CRM_Event_Form_Task_SaveSearch_Update',
116 'result' => TRUE,
117 ),
23546577
CW
118 15 => array(
119 'title' => ts('Change Participant Status'),
6a488035
TO
120 'class' => 'CRM_Event_Form_Task_ParticipantStatus',
121 'result' => TRUE,
122 ),
23546577
CW
123 16 => array(
124 'title' => ts('Print Event Name Badges'),
6a488035
TO
125 'class' => 'CRM_Event_Form_Task_Badge',
126 'result' => FALSE,
127 ),
bb7b01e6
SD
128 20 => array(
129 'title' => ts('Add Contacts to Group'),
130 'class' => 'CRM_Event_Form_Task_AddToGroup',
131 'result' => FALSE,
132 ),
6a488035
TO
133 );
134
135 //CRM-4418, check for delete
136 if (!CRM_Core_Permission::check('delete in CiviEvent')) {
137 unset(self::$_tasks[1]);
138 }
447c72b5 139 //CRM-12920 - check for edit permission
481a74f4 140 if (!CRM_Core_Permission::check('edit event participants')) {
0479b4c8 141 unset(self::$_tasks[4], self::$_tasks[5], self::$_tasks[15]);
447c72b5 142 }
6a488035
TO
143 }
144
145 CRM_Utils_Hook::searchTasks('event', self::$_tasks);
146 asort(self::$_tasks);
147 return self::$_tasks;
148 }
149
150 /**
151 * These tasks are the core set of task titles
152 * for participants
153 *
a6c01b45
CW
154 * @return array
155 * the set of task titles
6a488035 156 */
00be9182 157 public static function &taskTitles() {
6a488035
TO
158 self::tasks();
159 $titles = array();
160 foreach (self::$_tasks as $id => $value) {
e341bbee
CW
161 // skip Update Smart Group task
162 if ($id != self::SAVE_SEARCH_UPDATE) {
6a488035
TO
163 $titles[$id] = $value['title'];
164 }
6a488035
TO
165 }
166 return $titles;
167 }
168
169 /**
fe482240 170 * These tasks get added based on the context the user is in.
6a488035 171 *
a6c01b45
CW
172 * @return array
173 * the set of optional tasks for a group of contacts
6a488035 174 */
00be9182 175 public static function &optionalTaskTitle() {
6a488035
TO
176 $tasks = array(
177 14 => self::$_tasks[14]['title'],
178 );
179 return $tasks;
180 }
181
182 /**
100fef9d 183 * Show tasks selectively based on the permission level
6a488035
TO
184 * of the user
185 *
186 * @param int $permission
187 *
a6c01b45
CW
188 * @return array
189 * set of tasks that are valid for the user
6a488035 190 */
00be9182 191 public static function &permissionedTaskTitles($permission) {
6a488035
TO
192 $tasks = array();
193 if (($permission == CRM_Core_Permission::EDIT)
194 || CRM_Core_Permission::check('edit event participants')
195 ) {
196 $tasks = self::taskTitles();
197 }
198 else {
199 $tasks = array(
200 3 => self::$_tasks[3]['title'],
201 6 => self::$_tasks[6]['title'],
202 );
203
204 //CRM-4418,
205 if (CRM_Core_Permission::check('delete in CiviEvent')) {
206 $tasks[1] = self::$_tasks[1]['title'];
207 }
208 }
209 return $tasks;
210 }
211
212 /**
213 * These tasks are the core set of tasks that the user can perform
214 * on participants
215 *
216 * @param int $value
217 *
a6c01b45
CW
218 * @return array
219 * the set of tasks for a group of participants
6a488035 220 */
00be9182 221 public static function getTask($value) {
6a488035
TO
222 self::tasks();
223 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
224 // make the print task by default
225 $value = 2;
226 }
227 return array(
228 self::$_tasks[$value]['class'],
229 self::$_tasks[$value]['result'],
230 );
231 }
96025800 232
6a488035 233}