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