Merge pull request #6371 from colemanw/CRM-16891
[civicrm-core.git] / CRM / Activity / 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 |
c73475ea 12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
6a488035
TO
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 |
c73475ea
WA
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
6a488035
TO
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 32 * $Id$
6a488035
TO
33 */
34
35/**
2e2605fe
EM
36 * Class to represent the actions that can be performed on a group of contacts
37 * used by the search forms.
6a488035
TO
38 */
39class CRM_Activity_Task {
7da04cde 40 const
6a488035
TO
41 DELETE_ACTIVITIES = 1,
42 PRINT_ACTIVITIES = 2,
43 EXPORT_ACTIVITIES = 3,
44 BATCH_ACTIVITIES = 4,
45 EMAIL_CONTACTS = 5,
46 EMAIL_SMS = 6;
47
48 /**
fe482240 49 * The task array.
6a488035
TO
50 *
51 * @var array
6a488035
TO
52 */
53 static $_tasks = NULL;
54
55 /**
fe482240 56 * The optional task array.
6a488035
TO
57 *
58 * @var array
6a488035
TO
59 */
60 static $_optionalTasks = NULL;
61
62 /**
fe482240 63 * These tasks are the core set of tasks that the user can perform.
6a488035
TO
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
TO
70 if (!(self::$_tasks)) {
71 self::$_tasks = array(
23546577
CW
72 1 => array(
73 'title' => ts('Delete Activities'),
6a488035
TO
74 'class' => 'CRM_Activity_Form_Task_Delete',
75 'result' => FALSE,
76 ),
23546577
CW
77 2 => array(
78 'title' => ts('Print Selected Rows'),
6a488035
TO
79 'class' => 'CRM_Activity_Form_Task_Print',
80 'result' => FALSE,
81 ),
23546577
CW
82 3 => array(
83 'title' => ts('Export Activities'),
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 Activities Via Profile'),
6a488035
TO
92 'class' => array(
93 'CRM_Activity_Form_Task_PickProfile',
94 'CRM_Activity_Form_Task_Batch',
95 ),
96 'result' => FALSE,
97 ),
23546577
CW
98 5 => array(
99 'title' => ts('Send Email to Contacts'),
6a488035
TO
100 'class' => array(
101 'CRM_Activity_Form_Task_PickOption',
102 'CRM_Activity_Form_Task_Email',
103 ),
104 'result' => FALSE,
105 ),
23546577
CW
106 6 => array(
107 'title' => ts('Send Reply SMS To Contacts'),
6a488035
TO
108 'class' => 'CRM_Activity_Form_Task_SMS',
109 'result' => FALSE,
110 ),
f70ca446
PN
111 7 => array(
112 'title' => ts('Tag Activities (assign tags)'),
113 'class' => 'CRM_Activity_Form_Task_AddToTag',
114 'result' => FALSE,
115 ),
116 8 => array(
117 'title' => ts('Untag Activities (remove tags)'),
118 'class' => 'CRM_Activity_Form_Task_RemoveFromTag',
119 'result' => FALSE,
120 ),
6a488035
TO
121 );
122
123 $config = CRM_Core_Config::singleton();
124 if (in_array('CiviCase', $config->enableComponents)) {
481a74f4 125 if (CRM_Core_Permission::check('access all cases and activities') ||
353ffa53
TO
126 CRM_Core_Permission::check('access my cases and activities')
127 ) {
23546577
CW
128 self::$_tasks[6] = array(
129 'title' => ts('File on Case'),
bbfeec41
BS
130 'class' => 'CRM_Activity_Form_Task_FileOnCase',
131 'result' => FALSE,
132 );
133 }
6a488035
TO
134 }
135
136 //CRM-4418, check for delete
137 if (!CRM_Core_Permission::check('delete activities')) {
138 unset(self::$_tasks[1]);
139 }
140 }
141 CRM_Utils_Hook::searchTasks('activity', self::$_tasks);
142 asort(self::$_tasks);
143 return self::$_tasks;
144 }
145
146 /**
fe482240 147 * These tasks are the core set of task titles.
6a488035
TO
148 * on activity
149 *
a6c01b45
CW
150 * @return array
151 * the set of task titles
6a488035 152 */
00be9182 153 public static function &taskTitles() {
6a488035
TO
154 self::tasks();
155 $titles = array();
156 foreach (self::$_tasks as $id => $value) {
e341bbee 157 $titles[$id] = $value['title'];
6a488035
TO
158 }
159 return $titles;
160 }
161
162 /**
fe482240 163 * Show tasks selectively based on the permission level.
6a488035
TO
164 * of the user
165 *
166 * @param int $permission
167 *
a6c01b45
CW
168 * @return array
169 * set of tasks that are valid for the user
6a488035 170 */
00be9182 171 public static function &permissionedTaskTitles($permission) {
6a488035
TO
172 $tasks = array();
173 if ($permission == CRM_Core_Permission::EDIT) {
174 $tasks = self::taskTitles();
175 }
176 else {
177 $tasks = array(
178 3 => self::$_tasks[3]['title'],
179 );
180
181 //CRM-4418,
182 if (CRM_Core_Permission::check('delete activities')) {
183 $tasks[1] = self::$_tasks[1]['title'];
184 }
185 }
186 return $tasks;
187 }
188
189 /**
fe482240 190 * These tasks are the core set of tasks that the user can perform.
6a488035
TO
191 * on activity
192 *
193 * @param int $value
194 *
a6c01b45
CW
195 * @return array
196 * the set of tasks for a group of activity
6a488035 197 */
00be9182 198 public static function getTask($value) {
6a488035
TO
199 self::tasks();
200 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
201 // make the print task by default
202 $value = 2;
203 }
204 return array(
205 self::$_tasks[$value]['class'],
206 self::$_tasks[$value]['result'],
207 );
208 }
96025800 209
6a488035 210}