Merge pull request #9259 from sqweets/customRelationshipsExport
[civicrm-core.git] / CRM / Case / Task.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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-2016
32 */
33
34 /**
35 * Class to represent the actions that can be performed on a group of contacts.
36 *
37 * Used by the search forms
38 */
39 class CRM_Case_Task {
40 const DELETE_CASES = 1, PRINT_CASES = 2, EXPORT_CASES = 3, RESTORE_CASES = 4;
41
42 /**
43 * The task array
44 *
45 * @var array
46 */
47 static $_tasks = NULL;
48
49 /**
50 * The optional task array
51 *
52 * @var array
53 */
54 static $_optionalTasks = NULL;
55
56 /**
57 * These tasks are the core set of tasks that the user can perform
58 * on a contact / group of contacts
59 *
60 * @return array
61 * the set of tasks for a group of contacts
62 */
63 public static function &tasks() {
64 if (!self::$_tasks) {
65 self::$_tasks = array(
66 1 => array(
67 'title' => ts('Delete cases'),
68 'class' => 'CRM_Case_Form_Task_Delete',
69 'result' => FALSE,
70 ),
71 2 => array(
72 'title' => ts('Print selected rows'),
73 'class' => 'CRM_Case_Form_Task_Print',
74 'result' => FALSE,
75 ),
76 3 => array(
77 'title' => ts('Export cases'),
78 'class' => array(
79 'CRM_Export_Form_Select',
80 'CRM_Export_Form_Map',
81 ),
82 'result' => FALSE,
83 ),
84 4 => array(
85 'title' => ts('Restore cases'),
86 'class' => 'CRM_Case_Form_Task_Restore',
87 'result' => FALSE,
88 ),
89 5 => array(
90 'title' => ts('Print/merge Document'),
91 'class' => 'CRM_Case_Form_Task_PDF',
92 'result' => FALSE,
93 ),
94 );
95 //CRM-4418, check for delete
96 if (!CRM_Core_Permission::check('delete in CiviCase')) {
97 unset(self::$_tasks[1]);
98 }
99 }
100
101 CRM_Utils_Hook::searchTasks('case', self::$_tasks);
102 asort(self::$_tasks);
103 return self::$_tasks;
104 }
105
106 /**
107 * These tasks are the core set of task titles.
108 *
109 * @return array
110 * the set of task titles
111 */
112 public static function &taskTitles() {
113 self::tasks();
114 $titles = array();
115 foreach (self::$_tasks as $id => $value) {
116 $titles[$id] = $value['title'];
117 }
118 return $titles;
119 }
120
121 /**
122 * These tasks get added based on the context the user is in.
123 *
124 * @return array
125 * the set of optional tasks for a group of contacts
126 */
127 public static function &optionalTaskTitle() {
128 $tasks = array();
129 return $tasks;
130 }
131
132 /**
133 * Show tasks selectively based on the permission level.
134 * of the user
135 *
136 * @param int $permission
137 *
138 * @return array
139 * set of tasks that are valid for the user
140 */
141 public static function &permissionedTaskTitles($permission) {
142 $tasks = array();
143 if (($permission == CRM_Core_Permission::EDIT)
144 || CRM_Core_Permission::check('access all cases and activities')
145 || CRM_Core_Permission::check('access my cases and activities')
146 ) {
147 $tasks = self::taskTitles();
148 }
149 else {
150 $tasks = array(
151 3 => self::$_tasks[3]['title'],
152 );
153 //CRM-4418,
154 if (CRM_Core_Permission::check('delete in CiviCase')) {
155 $tasks[1] = self::$_tasks[1]['title'];
156 }
157 }
158 return $tasks;
159 }
160
161 /**
162 * These tasks are the core set of tasks.
163 *
164 * @param int $value
165 *
166 * @return array
167 * the set of tasks for a group of contacts
168 */
169 public static function getTask($value) {
170 self::tasks();
171 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
172 // make the print task by default
173 $value = 2;
174 }
175
176 return array(
177 self::$_tasks[$value]['class'],
178 self::$_tasks[$value]['result'],
179 );
180 }
181
182 }