Merge pull request #12683 from civicrm/5.5
[civicrm-core.git] / CRM / Campaign / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
df371444 35 * class to represent the actions that can be performed on a group of voters.
6a488035 36 *
df371444 37 * Used by the search forms.
6a488035 38 */
5da76dbe 39class CRM_Campaign_Task extends CRM_Core_Task {
6a488035 40
5da76dbe
MW
41 const
42 // Campaign tasks
43 INTERVIEW = 601,
44 RESERVE = 602,
45 RELEASE = 603;
6a488035 46
5da76dbe 47 static $objectType = 'campaign';
6a488035
TO
48
49 /**
50 * These tasks are the core set of tasks that the user can perform
51 * on a voter / group of voters
52 *
a6c01b45
CW
53 * @return array
54 * the set of tasks for a group of voters.
6a488035 55 */
5da76dbe 56 public static function tasks() {
6a488035 57 if (!(self::$_tasks)) {
94880218 58 self::$_tasks = array(
5da76dbe 59 self::INTERVIEW => array(
353ffa53 60 'title' => ts('Record Respondents Interview'),
6a488035
TO
61 'class' => array(
62 'CRM_Campaign_Form_Task_Interview',
63 'CRM_Campaign_Form_Task_Release',
64 ),
65 'result' => FALSE,
66 ),
5da76dbe 67 self::RESERVE => array(
23546577 68 'title' => ts('Reserve Respondents'),
6a488035
TO
69 'class' => array(
70 'CRM_Campaign_Form_Task_Reserve',
71 'CRM_Campaign_Form_Task_Interview',
72 'CRM_Campaign_Form_Task_Release',
73 ),
74 'result' => FALSE,
75 ),
5da76dbe 76 self::RELEASE => array(
23546577 77 'title' => ts('Release Respondents'),
6a488035
TO
78 'class' => 'CRM_Campaign_Form_Task_Release',
79 'result' => FALSE,
80 ),
5da76dbe 81 self::TASK_PRINT => array(
23546577 82 'title' => ts('Print Respondents'),
6a488035
TO
83 'class' => 'CRM_Campaign_Form_Task_Print',
84 'result' => FALSE,
85 ),
86 );
6a488035 87
5da76dbe 88 parent::tasks();
4d73a5a7 89 }
6a488035
TO
90
91 return self::$_tasks;
92 }
93
6a488035 94 /**
100fef9d 95 * Show tasks selectively based on the permission level
6a488035
TO
96 * of the user
97 *
98 * @param int $permission
5da76dbe 99 * @param array $params
6a488035 100 *
a6c01b45
CW
101 * @return array
102 * set of tasks that are valid for the user
6a488035 103 */
5da76dbe 104 public static function permissionedTaskTitles($permission, $params = array()) {
6a488035
TO
105 $tasks = self::taskTitles();
106
5da76dbe 107 $tasks = parent::corePermissionedTaskTitles($tasks, $permission, $params);
6a488035
TO
108 return $tasks;
109 }
110
111 /**
112 * These tasks are the core set of tasks that the user can perform
113 * on voters.
114 *
115 * @param int $value
116 *
a6c01b45
CW
117 * @return array
118 * the set of tasks for a group of voters.
6a488035 119 */
00be9182 120 public static function getTask($value) {
6a488035
TO
121 self::tasks();
122 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
5da76dbe
MW
123 // Set the interview task as default
124 $value = self::INTERVIEW;
6a488035
TO
125 }
126
127 return array(
128 self::$_tasks[$value]['class'],
129 self::$_tasks[$value]['result'],
130 );
131 }
96025800 132
6a488035 133}