Merge pull request #11366 from mattwire/CRM-21512_remove_restriction_update_subscript...
[civicrm-core.git] / CRM / Grant / 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 * $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_Grant_Task {
7da04cde 42 const DELETE_GRANTS = 1, PRINT_GRANTS = 2, EXPORT_GRANTS = 3, UPDATE_GRANTS = 4;
6a488035
TO
43
44 /**
100fef9d 45 * The task array
6a488035
TO
46 *
47 * @var array
6a488035
TO
48 */
49 static $_tasks = NULL;
50
51 /**
100fef9d 52 * The optional task array
6a488035
TO
53 *
54 * @var array
6a488035
TO
55 */
56 static $_optionalTasks = NULL;
57
58 /**
59 * These tasks are the core set of tasks that the user can perform
60 * on a contact / group of contacts
61 *
a6c01b45
CW
62 * @return array
63 * the set of tasks for a group of contacts
6a488035 64 */
00be9182 65 public static function &tasks() {
6a488035 66 if (!(self::$_tasks)) {
1afc557a 67 self::$_tasks = array(
353ffa53 68 1 => array(
7f82e636 69 'title' => ts('Delete grants'),
6a488035
TO
70 'class' => 'CRM_Grant_Form_Task_Delete',
71 'result' => FALSE,
72 ),
23546577 73 2 => array(
7f82e636 74 'title' => ts('Print selected rows'),
6a488035
TO
75 'class' => 'CRM_Grant_Form_Task_Print',
76 'result' => FALSE,
77 ),
23546577 78 3 => array(
7f82e636 79 'title' => ts('Export grants'),
6a488035
TO
80 'class' => array(
81 'CRM_Export_Form_Select',
82 'CRM_Export_Form_Map',
83 ),
84 'result' => FALSE,
85 ),
23546577 86 4 => array(
7f82e636 87 'title' => ts('Update grants'),
6a488035
TO
88 'class' => 'CRM_Grant_Form_Task_Update',
89 'result' => FALSE,
90 ),
91 );
4d73a5a7 92
93 if (!CRM_Core_Permission::check('delete in CiviGrant')) {
94 unset(self::$_tasks[1]);
95 }
96
97 CRM_Utils_Hook::searchTasks('grant', self::$_tasks);
98 asort(self::$_tasks);
6a488035 99 }
4d73a5a7 100
6a488035
TO
101 return self::$_tasks;
102 }
103
104 /**
105 * These tasks are the core set of task titles
106 *
a6c01b45
CW
107 * @return array
108 * the set of task titles
6a488035 109 */
00be9182 110 public static function &taskTitles() {
6a488035
TO
111 self::tasks();
112 $titles = array();
113 foreach (self::$_tasks as $id => $value) {
e341bbee 114 $titles[$id] = $value['title'];
6a488035
TO
115 }
116 return $titles;
117 }
118
119 /**
100fef9d 120 * Show tasks selectively based on the permission level
6a488035
TO
121 * of the user
122 *
123 * @param int $permission
124 *
a6c01b45
CW
125 * @return array
126 * set of tasks that are valid for the user
6a488035 127 */
00be9182 128 public static function &permissionedTaskTitles($permission) {
6a488035
TO
129 $tasks = array();
130 if (($permission == CRM_Core_Permission::EDIT)
131 || CRM_Core_Permission::check('edit grants')
132 ) {
133 $tasks = self::taskTitles();
134 }
135 else {
136 $tasks = array(
137 3 => self::$_tasks[3]['title'],
138 );
139 //CRM-4418,
140 if (CRM_Core_Permission::check('delete in CiviGrant')) {
141 $tasks[1] = self::$_tasks[1]['title'];
142 }
143 }
144 return $tasks;
145 }
146
147 /**
148 * These tasks are the core set of tasks that the user can perform
149 *
150 * @param int $value
151 *
a6c01b45
CW
152 * @return array
153 * the set of tasks for a group of contacts
6a488035 154 */
00be9182 155 public static function getTask($value) {
6a488035
TO
156 self::tasks();
157 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
158 // make the print task by default
159 $value = 2;
160 }
161 return array(
162 self::$_tasks[$value]['class'],
163 self::$_tasks[$value]['result'],
164 );
165 }
96025800 166
6a488035 167}