INFRA-132 - Civi - PHPStorm cleanup
[civicrm-core.git] / CRM / Pledge / 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_Pledge_Task {
7da04cde 42 const DELETE_PLEDGES = 1, PRINT_PLEDGES = 2, EXPORT_PLEDGES = 3;
6a488035
TO
43
44 /**
100fef9d 45 * The task array
6a488035
TO
46 *
47 * @var array
48 * @static
49 */
50 static $_tasks = NULL;
51
52 /**
100fef9d 53 * The optional task array
6a488035
TO
54 *
55 * @var array
56 * @static
57 */
58 static $_optionalTasks = NULL;
59
60 /**
61 * These tasks are the core set of tasks that the user can perform
62 * on a contact / group of contacts
63 *
a6c01b45
CW
64 * @return array
65 * the set of tasks for a group of contacts
6a488035 66 * @static
6a488035 67 */
00be9182 68 public static function &tasks() {
6a488035 69 if (!self::$_tasks) {
098201d8
TO
70 self::$_tasks = array(
71 1 => array(
23546577 72 'title' => ts('Delete Pledges'),
6a488035
TO
73 'class' => 'CRM_Pledge_Form_Task_Delete',
74 'result' => FALSE,
75 ),
23546577
CW
76 2 => array(
77 'title' => ts('Print Selected Rows'),
6a488035
TO
78 'class' => 'CRM_Pledge_Form_Task_Print',
79 'result' => FALSE,
80 ),
23546577
CW
81 3 => array(
82 'title' => ts('Export Pledges'),
6a488035
TO
83 'class' => array(
84 'CRM_Export_Form_Select',
85 'CRM_Export_Form_Map',
86 ),
87 'result' => FALSE,
88 ),
89 );
90
91 //CRM-4418, check for delete
92 if (!CRM_Core_Permission::check('delete in CiviPledge')) {
93 unset(self::$_tasks[1]);
94 }
95 }
96 CRM_Utils_Hook::searchTasks('pledge', self::$_tasks);
97 asort(self::$_tasks);
98 return self::$_tasks;
99 }
100
101 /**
102 * These tasks are the core set of task titles
103 *
a6c01b45
CW
104 * @return array
105 * the set of task titles
6a488035 106 * @static
6a488035 107 */
00be9182 108 public static function &taskTitles() {
6a488035
TO
109 self::tasks();
110 $titles = array();
111 foreach (self::$_tasks as $id => $value) {
e341bbee 112 $titles[$id] = $value['title'];
6a488035
TO
113 }
114 return $titles;
115 }
116
117 /**
118 * These tasks get added based on the context the user is in
119 *
a6c01b45
CW
120 * @return array
121 * the set of optional tasks for a group of contacts
6a488035 122 * @static
6a488035 123 */
00be9182 124 public static function &optionalTaskTitle() {
6a488035
TO
125 $tasks = array();
126 return $tasks;
127 }
128
129 /**
100fef9d 130 * Show tasks selectively based on the permission level
6a488035
TO
131 * of the user
132 *
133 * @param int $permission
134 *
a6c01b45
CW
135 * @return array
136 * set of tasks that are valid for the user
6a488035 137 */
00be9182 138 public static function &permissionedTaskTitles($permission) {
6a488035
TO
139 $tasks = array();
140 if (($permission == CRM_Core_Permission::EDIT)
141 || CRM_Core_Permission::check('edit pledges')
142 ) {
143 $tasks = self::taskTitles();
144 }
145 else {
146 $tasks = array(
147 3 => self::$_tasks[3]['title'],
148 );
149 //CRM-4418,
150 if (CRM_Core_Permission::check('delete in CiviPledge')) {
151 $tasks[1] = self::$_tasks[1]['title'];
152 }
153 }
154 return $tasks;
155 }
156
157 /**
158 * These tasks are the core set of tasks that the user can perform
159 * on pledges
160 *
161 * @param int $value
162 *
a6c01b45
CW
163 * @return array
164 * the set of tasks for a group of pledge holders
6a488035 165 * @static
6a488035 166 */
00be9182 167 public static function getTask($value) {
6a488035
TO
168 self::tasks();
169 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
170 // make the print task by default
171 $value = 2;
172 }
173 return array(
174 self::$_tasks[$value]['class'],
175 self::$_tasks[$value]['result'],
176 );
177 }
178}