commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Campaign / Task.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * class to represent the actions that can be performed on a
38 * group of voters.
39 * used by the search forms
40 *
41 */
42 class CRM_Campaign_Task {
43 const INTERVIEW = 1, RESERVE = 2, RELEASE = 3, PRINT_VOTERS = 4;
44
45 /**
46 * The task array
47 *
48 * @var array
49 */
50 static $_tasks = NULL;
51
52 /**
53 * The optional task array
54 *
55 * @var array
56 */
57 static $_optionalTasks = NULL;
58
59 /**
60 * These tasks are the core set of tasks that the user can perform
61 * on a voter / group of voters
62 *
63 * @return array
64 * the set of tasks for a group of voters.
65 */
66 public static function &tasks() {
67 if (!(self::$_tasks)) {
68 self::$_tasks = array(
69 1 => array(
70 'title' => ts('Record Respondents Interview'),
71 'class' => array(
72 'CRM_Campaign_Form_Task_Interview',
73 'CRM_Campaign_Form_Task_Release',
74 ),
75 'result' => FALSE,
76 ),
77 2 => array(
78 'title' => ts('Reserve Respondents'),
79 'class' => array(
80 'CRM_Campaign_Form_Task_Reserve',
81 'CRM_Campaign_Form_Task_Interview',
82 'CRM_Campaign_Form_Task_Release',
83 ),
84 'result' => FALSE,
85 ),
86 3 => array(
87 'title' => ts('Release Respondents'),
88 'class' => 'CRM_Campaign_Form_Task_Release',
89 'result' => FALSE,
90 ),
91 4 => array(
92 'title' => ts('Print Respondents'),
93 'class' => 'CRM_Campaign_Form_Task_Print',
94 'result' => FALSE,
95 ),
96 );
97
98 CRM_Utils_Hook::searchTasks('campaign', self::$_tasks);
99 asort(self::$_tasks);
100 }
101
102 return self::$_tasks;
103 }
104
105 /**
106 * These tasks are the core set of task titles
107 * on voters.
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
119 return $titles;
120 }
121
122 /**
123 * Show tasks selectively based on the permission level
124 * of the user
125 *
126 * @param int $permission
127 *
128 * @return array
129 * set of tasks that are valid for the user
130 */
131 public static function &permissionedTaskTitles($permission) {
132 $tasks = self::taskTitles();
133
134 return $tasks;
135 }
136
137 /**
138 * These tasks are the core set of tasks that the user can perform
139 * on voters.
140 *
141 * @param int $value
142 *
143 * @return array
144 * the set of tasks for a group of voters.
145 */
146 public static function getTask($value) {
147 self::tasks();
148 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
149 // make the interview task by default
150 $value = 1;
151 }
152
153 return array(
154 self::$_tasks[$value]['class'],
155 self::$_tasks[$value]['result'],
156 );
157 }
158
159 }