Merge pull request #10017 from colemanw/CRM-20302
[civicrm-core.git] / CRM / Contribute / 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/**
347e061b 35 * Class to represent the actions that can be performed on a group of contacts.
6a488035 36 *
347e061b 37 * Used by the search forms.
6a488035
TO
38 */
39class CRM_Contribute_Task {
7da04cde 40 const DELETE_CONTRIBUTIONS = 1, PRINT_CONTRIBUTIONS = 2, EXPORT_CONTRIBUTIONS = 3, BATCH_CONTRIBUTIONS = 4, EMAIL_CONTACTS = 5, UPDATE_STATUS = 6, PDF_RECEIPT = 7;
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 */
42e8b05c 63 public static function tasks() {
6a488035
TO
64 if (!(self::$_tasks)) {
65 self::$_tasks = array(
23546577 66 1 => array(
7f82e636 67 'title' => ts('Delete contributions'),
6a488035
TO
68 'class' => 'CRM_Contribute_Form_Task_Delete',
69 'result' => FALSE,
70 ),
23546577 71 2 => array(
7f82e636 72 'title' => ts('Print selected rows'),
6a488035
TO
73 'class' => 'CRM_Contribute_Form_Task_Print',
74 'result' => FALSE,
75 ),
23546577 76 3 => array(
7f82e636 77 'title' => ts('Export contributions'),
6a488035
TO
78 'class' => array(
79 'CRM_Export_Form_Select',
80 'CRM_Export_Form_Map',
81 ),
82 'result' => FALSE,
83 ),
23546577 84 4 => array(
b581842f 85 'title' => ts('Update multiple contributions'),
6a488035
TO
86 'class' => array(
87 'CRM_Contribute_Form_Task_PickProfile',
88 'CRM_Contribute_Form_Task_Batch',
89 ),
90 'result' => TRUE,
91 ),
23546577 92 5 => array(
7f82e636 93 'title' => ts('Email - send now'),
6a488035
TO
94 'class' => 'CRM_Contribute_Form_Task_Email',
95 'result' => TRUE,
96 ),
23546577 97 6 => array(
7f82e636 98 'title' => ts('Update pending contribution status'),
6a488035
TO
99 'class' => 'CRM_Contribute_Form_Task_Status',
100 'result' => TRUE,
101 ),
23546577 102 7 => array(
79e4c2ad 103 'title' => ts('Receipts - print or email'),
6a488035
TO
104 'class' => 'CRM_Contribute_Form_Task_PDF',
105 'result' => FALSE,
106 ),
23546577 107 8 => array(
79e4c2ad 108 'title' => ts('Thank-you letters - print or email'),
6a488035
TO
109 'class' => 'CRM_Contribute_Form_Task_PDFLetter',
110 'result' => FALSE,
111 ),
9849720e 112 9 => array(
79e4c2ad 113 'title' => ts('Invoices - print or email'),
9849720e
RK
114 'class' => 'CRM_Contribute_Form_Task_Invoice',
115 'result' => FALSE,
116 ),
6a488035
TO
117 );
118
119 //CRM-4418, check for delete
120 if (!CRM_Core_Permission::check('delete in CiviContribute')) {
121 unset(self::$_tasks[1]);
122 }
447c72b5 123 //CRM-12920 - check for edit permission
481a74f4 124 if (!CRM_Core_Permission::check('edit contributions')) {
874c9be7 125 unset(self::$_tasks[4], self::$_tasks[6]);
447c72b5 126 }
6a488035 127
79e4c2ad 128 // remove action "Invoices - print or email"
aaffa79f 129 $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
e0d683cf
PB
130 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
131 if (!$invoicing) {
132 unset(self::$_tasks[9]);
133 }
4d73a5a7 134
6a488035
TO
135 CRM_Utils_Hook::searchTasks('contribution', self::$_tasks);
136 asort(self::$_tasks);
137 }
138
139 return self::$_tasks;
140 }
141
142 /**
143 * These tasks are the core set of task titles
144 * on contributors
145 *
a6c01b45
CW
146 * @return array
147 * the set of task titles
6a488035 148 */
00be9182 149 public static function &taskTitles() {
6a488035
TO
150 self::tasks();
151 $titles = array();
152 foreach (self::$_tasks as $id => $value) {
e341bbee 153 $titles[$id] = $value['title'];
6a488035
TO
154 }
155 return $titles;
156 }
157
158 /**
100fef9d 159 * Show tasks selectively based on the permission level
6a488035
TO
160 * of the user
161 *
162 * @param int $permission
163 *
dd244018
EM
164 * @param bool $softCreditFiltering
165 *
a6c01b45
CW
166 * @return array
167 * set of tasks that are valid for the user
6a488035 168 */
00be9182 169 public static function &permissionedTaskTitles($permission, $softCreditFiltering = FALSE) {
6a488035
TO
170 $tasks = array();
171 if (($permission == CRM_Core_Permission::EDIT)
172 || CRM_Core_Permission::check('edit contributions')
173 ) {
174 $tasks = self::taskTitles();
175 }
176 else {
177 $tasks = array(
178 3 => self::$_tasks[3]['title'],
179 5 => self::$_tasks[5]['title'],
180 7 => self::$_tasks[7]['title'],
181 );
182
183 //CRM-4418,
184 if (CRM_Core_Permission::check('delete in CiviContribute')) {
185 $tasks[1] = self::$_tasks[1]['title'];
186 }
187 }
c410490a
DS
188 if ($softCreditFiltering) {
189 unset($tasks[4], $tasks[7]);
190 }
6a488035
TO
191 return $tasks;
192 }
193
194 /**
195 * These tasks are the core set of tasks that the user can perform
196 * on contributors
197 *
198 * @param int $value
199 *
a6c01b45
CW
200 * @return array
201 * the set of tasks for a group of contributors
6a488035 202 */
00be9182 203 public static function getTask($value) {
6a488035
TO
204 self::tasks();
205 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
206 // make the print task by default
207 $value = 2;
208 }
3c247800
DL
209 // this is possible since hooks can inject a task
210 // CRM-13697
211 if (!isset(self::$_tasks[$value]['result'])) {
212 self::$_tasks[$value]['result'] = NULL;
213 }
6a488035
TO
214 return array(
215 self::$_tasks[$value]['class'],
216 self::$_tasks[$value]['result'],
217 );
218 }
96025800 219
6a488035 220}