INFRA-132 - CRM/Dedupe - phpcbf
[civicrm-core.git] / CRM / Event / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
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,
6a488035
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,
bb7b01e6 46 LABEL_CONTACTS = 16, GROUP_CONTACTS = 20;
6a488035
TO
47
48 /**
100fef9d 49 * The task array
6a488035
TO
50 *
51 * @var array
52 * @static
53 */
54 static $_tasks = NULL;
55
56 /**
100fef9d 57 * The optional task array
6a488035
TO
58 *
59 * @var array
60 * @static
61 */
62 static $_optionalTasks = NULL;
63
64 /**
65 * These tasks are the core set of tasks that the user can perform
66 * on a contact / group of contacts
67 *
68 * @return array the set of tasks for a group of contacts
69 * @static
6a488035 70 */
00be9182 71 public static function &tasks() {
6a488035 72 if (!(self::$_tasks)) {
23546577
CW
73 self::$_tasks = array(1 => array(
74 'title' => ts('Delete Participants'),
6a488035
TO
75 'class' => 'CRM_Event_Form_Task_Delete',
76 'result' => FALSE,
77 ),
23546577
CW
78 2 => array(
79 'title' => ts('Print Selected Rows'),
6a488035
TO
80 'class' => 'CRM_Event_Form_Task_Print',
81 'result' => FALSE,
82 ),
23546577
CW
83 3 => array(
84 'title' => ts('Export Participants'),
6a488035
TO
85 'class' => array(
86 'CRM_Export_Form_Select',
87 'CRM_Export_Form_Map',
88 ),
89 'result' => FALSE,
90 ),
23546577
CW
91 4 => array(
92 'title' => ts('Batch Update Participants Via Profile'),
6a488035
TO
93 'class' => array(
94 'CRM_Event_Form_Task_PickProfile',
95 'CRM_Event_Form_Task_Batch',
96 ),
97 'result' => TRUE,
98 ),
23546577
CW
99 5 => array(
100 'title' => ts('Cancel Registration'),
6a488035
TO
101 'class' => 'CRM_Event_Form_Task_Cancel',
102 'result' => FALSE,
103 ),
23546577
CW
104 6 => array(
105 'title' => ts('Send Email to Contacts'),
6a488035
TO
106 'class' => 'CRM_Event_Form_Task_Email',
107 'result' => TRUE,
108 ),
23546577
CW
109 13 => array(
110 'title' => ts('New Smart Group'),
6a488035
TO
111 'class' => 'CRM_Event_Form_Task_SaveSearch',
112 'result' => TRUE,
113 ),
23546577
CW
114 14 => array(
115 'title' => ts('Update Smart Group'),
6a488035
TO
116 'class' => 'CRM_Event_Form_Task_SaveSearch_Update',
117 'result' => TRUE,
118 ),
23546577
CW
119 15 => array(
120 'title' => ts('Change Participant Status'),
6a488035
TO
121 'class' => 'CRM_Event_Form_Task_ParticipantStatus',
122 'result' => TRUE,
123 ),
23546577
CW
124 16 => array(
125 'title' => ts('Print Event Name Badges'),
6a488035
TO
126 'class' => 'CRM_Event_Form_Task_Badge',
127 'result' => FALSE,
128 ),
bb7b01e6
SD
129 20 => array(
130 'title' => ts('Add Contacts to Group'),
131 'class' => 'CRM_Event_Form_Task_AddToGroup',
132 'result' => FALSE,
133 ),
6a488035
TO
134 );
135
136 //CRM-4418, check for delete
137 if (!CRM_Core_Permission::check('delete in CiviEvent')) {
138 unset(self::$_tasks[1]);
139 }
447c72b5
PC
140 //CRM-12920 - check for edit permission
141 if( !CRM_Core_Permission::check('edit event participants') ){
142 unset(self::$_tasks[4],self::$_tasks[5],self::$_tasks[15]);
143 }
6a488035
TO
144 }
145
146 CRM_Utils_Hook::searchTasks('event', self::$_tasks);
147 asort(self::$_tasks);
148 return self::$_tasks;
149 }
150
151 /**
152 * These tasks are the core set of task titles
153 * for participants
154 *
155 * @return array the set of task titles
156 * @static
6a488035 157 */
00be9182 158 public static function &taskTitles() {
6a488035
TO
159 self::tasks();
160 $titles = array();
161 foreach (self::$_tasks as $id => $value) {
e341bbee
CW
162 // skip Update Smart Group task
163 if ($id != self::SAVE_SEARCH_UPDATE) {
6a488035
TO
164 $titles[$id] = $value['title'];
165 }
6a488035
TO
166 }
167 return $titles;
168 }
169
170 /**
171 * These tasks get added based on the context the user is in
172 *
173 * @return array the set of optional tasks for a group of contacts
174 * @static
6a488035 175 */
00be9182 176 public static function &optionalTaskTitle() {
6a488035
TO
177 $tasks = array(
178 14 => self::$_tasks[14]['title'],
179 );
180 return $tasks;
181 }
182
183 /**
100fef9d 184 * Show tasks selectively based on the permission level
6a488035
TO
185 * of the user
186 *
187 * @param int $permission
188 *
189 * @return array 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 *
218 * @return array the set of tasks for a group of participants
219 * @static
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 }
232}