smart-group-changes
[civicrm-core.git] / CRM / Contribute / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
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 */
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(
7f82e636 85 'title' => ts('Batch update contributions via profile'),
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"
9148c277 129 $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
e0d683cf
PB
130 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
131 if (!$invoicing) {
132 unset(self::$_tasks[9]);
133 }
6a488035
TO
134 CRM_Utils_Hook::searchTasks('contribution', self::$_tasks);
135 asort(self::$_tasks);
136 }
137
138 return self::$_tasks;
139 }
140
141 /**
142 * These tasks are the core set of task titles
143 * on contributors
144 *
a6c01b45
CW
145 * @return array
146 * the set of task titles
6a488035 147 */
00be9182 148 public static function &taskTitles() {
6a488035
TO
149 self::tasks();
150 $titles = array();
151 foreach (self::$_tasks as $id => $value) {
e341bbee 152 $titles[$id] = $value['title'];
6a488035
TO
153 }
154 return $titles;
155 }
156
157 /**
100fef9d 158 * Show tasks selectively based on the permission level
6a488035
TO
159 * of the user
160 *
161 * @param int $permission
162 *
dd244018
EM
163 * @param bool $softCreditFiltering
164 *
a6c01b45
CW
165 * @return array
166 * set of tasks that are valid for the user
6a488035 167 */
00be9182 168 public static function &permissionedTaskTitles($permission, $softCreditFiltering = FALSE) {
6a488035
TO
169 $tasks = array();
170 if (($permission == CRM_Core_Permission::EDIT)
171 || CRM_Core_Permission::check('edit contributions')
172 ) {
173 $tasks = self::taskTitles();
174 }
175 else {
176 $tasks = array(
177 3 => self::$_tasks[3]['title'],
178 5 => self::$_tasks[5]['title'],
179 7 => self::$_tasks[7]['title'],
180 );
181
182 //CRM-4418,
183 if (CRM_Core_Permission::check('delete in CiviContribute')) {
184 $tasks[1] = self::$_tasks[1]['title'];
185 }
186 }
c410490a
DS
187 if ($softCreditFiltering) {
188 unset($tasks[4], $tasks[7]);
189 }
6a488035
TO
190 return $tasks;
191 }
192
193 /**
194 * These tasks are the core set of tasks that the user can perform
195 * on contributors
196 *
197 * @param int $value
198 *
a6c01b45
CW
199 * @return array
200 * the set of tasks for a group of contributors
6a488035 201 */
00be9182 202 public static function getTask($value) {
6a488035
TO
203 self::tasks();
204 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
205 // make the print task by default
206 $value = 2;
207 }
3c247800
DL
208 // this is possible since hooks can inject a task
209 // CRM-13697
210 if (!isset(self::$_tasks[$value]['result'])) {
211 self::$_tasks[$value]['result'] = NULL;
212 }
6a488035
TO
213 return array(
214 self::$_tasks[$value]['class'],
215 self::$_tasks[$value]['result'],
216 );
217 }
96025800 218
6a488035 219}