3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * class to represent the actions that can be performed on a group of contacts
38 * used by the search forms
41 class CRM_Grant_Task
{
42 const DELETE_GRANTS
= 1, PRINT_GRANTS
= 2, EXPORT_GRANTS
= 3, UPDATE_GRANTS
= 4;
49 static $_tasks = NULL;
52 * The optional task array
56 static $_optionalTasks = NULL;
59 * These tasks are the core set of tasks that the user can perform
60 * on a contact / group of contacts
63 * the set of tasks for a group of contacts
65 public static function &tasks() {
66 if (!(self
::$_tasks)) {
67 self
::$_tasks = array(
69 'title' => ts('Delete Grants'),
70 'class' => 'CRM_Grant_Form_Task_Delete',
74 'title' => ts('Print Selected Rows'),
75 'class' => 'CRM_Grant_Form_Task_Print',
79 'title' => ts('Export Grants'),
81 'CRM_Export_Form_Select',
82 'CRM_Export_Form_Map',
87 'title' => ts('Update Grants'),
88 'class' => 'CRM_Grant_Form_Task_Update',
93 if (!CRM_Core_Permission
::check('delete in CiviGrant')) {
94 unset(self
::$_tasks[1]);
96 CRM_Utils_Hook
::searchTasks('grant', self
::$_tasks);
102 * These tasks are the core set of task titles
105 * the set of task titles
107 public static function &taskTitles() {
110 foreach (self
::$_tasks as $id => $value) {
111 $titles[$id] = $value['title'];
117 * Show tasks selectively based on the permission level
120 * @param int $permission
123 * set of tasks that are valid for the user
125 public static function &permissionedTaskTitles($permission) {
127 if (($permission == CRM_Core_Permission
::EDIT
)
128 || CRM_Core_Permission
::check('edit grants')
130 $tasks = self
::taskTitles();
134 3 => self
::$_tasks[3]['title'],
137 if (CRM_Core_Permission
::check('delete in CiviGrant')) {
138 $tasks[1] = self
::$_tasks[1]['title'];
145 * These tasks are the core set of tasks that the user can perform
150 * the set of tasks for a group of contacts
152 public static function getTask($value) {
154 if (!$value ||
!CRM_Utils_Array
::value($value, self
::$_tasks)) {
155 // make the print task by default
159 self
::$_tasks[$value]['class'],
160 self
::$_tasks[$value]['result'],