Import from SVN (r45945, r596)
[civicrm-core.git] / CRM / Grant / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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
31 * @copyright CiviCRM LLC (c) 2004-2013
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 {
42 CONST DELETE_GRANTS = 1, PRINT_GRANTS = 2, EXPORT_GRANTS = 3, UPDATE_GRANTS = 4;
43
44 /**
45 * the task array
46 *
47 * @var array
48 * @static
49 */
50 static $_tasks = NULL;
51
52 /**
53 * the optional task array
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 *
64 * @return array the set of tasks for a group of contacts
65 * @static
66 * @access public
67 */
68 static function &tasks() {
69 if (!(self::$_tasks)) {
70 self::$_tasks = array(1 => array('title' => ts('Delete Grants'),
71 'class' => 'CRM_Grant_Form_Task_Delete',
72 'result' => FALSE,
73 ),
74 2 => array('title' => ts('Print Grants'),
75 'class' => 'CRM_Grant_Form_Task_Print',
76 'result' => FALSE,
77 ),
78 3 => array('title' => ts('Export Grants'),
79 'class' => array(
80 'CRM_Export_Form_Select',
81 'CRM_Export_Form_Map',
82 ),
83 'result' => FALSE,
84 ),
85 4 => array('title' => ts('Update Grants'),
86 'class' => 'CRM_Grant_Form_Task_Update',
87 'result' => FALSE,
88 ),
89 );
90 }
91 if (!CRM_Core_Permission::check('delete in CiviGrant')) {
92 unset(self::$_tasks[1]);
93 }
94 CRM_Utils_Hook::searchTasks('grant', self::$_tasks);
95 asort(self::$_tasks);
96 return self::$_tasks;
97 }
98
99 /**
100 * These tasks are the core set of task titles
101 *
102 * @return array the set of task titles
103 * @static
104 * @access public
105 */
106 static function &taskTitles() {
107 self::tasks();
108 $titles = array();
109 foreach (self::$_tasks as $id => $value) {
110 // skip Print Grant task
111 if ($id != 2) {
112 $titles[$id] = $value['title'];
113 }
114 }
115 return $titles;
116 }
117
118 /**
119 * show tasks selectively based on the permission level
120 * of the user
121 *
122 * @param int $permission
123 *
124 * @return array set of tasks that are valid for the user
125 * @access public
126 */
127 static function &permissionedTaskTitles($permission) {
128 $tasks = array();
129 if (($permission == CRM_Core_Permission::EDIT)
130 || CRM_Core_Permission::check('edit grants')
131 ) {
132 $tasks = self::taskTitles();
133 }
134 else {
135 $tasks = array(
136 3 => self::$_tasks[3]['title'],
137 );
138 //CRM-4418,
139 if (CRM_Core_Permission::check('delete in CiviGrant')) {
140 $tasks[1] = self::$_tasks[1]['title'];
141 }
142 }
143 return $tasks;
144 }
145
146 /**
147 * These tasks are the core set of tasks that the user can perform
148 *
149 * @param int $value
150 *
151 * @return array the set of tasks for a group of contacts
152 * @static
153 * @access public
154 */
155 static function getTask($value) {
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 }
166}
167