Merge pull request #4892 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Mailing / Task.php
CommitLineData
2cc569f2
PJ
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
2cc569f2 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
2cc569f2
PJ
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
2cc569f2
PJ
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_Mailing_Task {
42 /**
100fef9d 43 * The task array
2cc569f2
PJ
44 *
45 * @var array
46 * @static
47 */
48 static $_tasks = NULL;
49
50 /**
100fef9d 51 * The optional task array
2cc569f2
PJ
52 *
53 * @var array
54 * @static
55 */
56 static $_optionalTasks = NULL;
57
58 /**
59 * These tasks are the core set of tasks that the user can perform
60 * on a contact / group of contacts
61 *
62 * @return array the set of tasks for a group of contacts
63 * @static
2cc569f2 64 */
00be9182 65 public static function &tasks() {
2cc569f2
PJ
66 if (!(self::$_tasks)) {
67 self::$_tasks = array(
23546577
CW
68 1 => array(
69 'title' => ts('Print Mailing Recipients'),
2cc569f2
PJ
70 'class' => 'CRM_Mailing_Form_Task_Print',
71 'result' => FALSE,
72 ),
73 );
74
75 CRM_Utils_Hook::searchTasks('mailing', self::$_tasks);
76 asort(self::$_tasks);
77 }
78
79 return self::$_tasks;
80 }
81
82 /**
83 * These tasks are the core set of task titles
e4a22519 84 * on mailing recipients
2cc569f2
PJ
85 *
86 * @return array the set of task titles
87 * @static
2cc569f2 88 */
00be9182 89 public static function &taskTitles() {
2cc569f2
PJ
90 return array();
91 }
92
93 /**
100fef9d 94 * Show tasks selectively based on the permission level
2cc569f2
PJ
95 * of the user
96 *
97 * @param int $permission
98 *
99 * @return array set of tasks that are valid for the user
2cc569f2 100 */
00be9182 101 public static function &permissionedTaskTitles($permission) {
2cc569f2
PJ
102 $task = array();
103 return $task;
104 }
105
106 /**
107 * These tasks are the core set of tasks that the user can perform
e4a22519 108 * on mailing recipients
2cc569f2
PJ
109 *
110 * @param int $value
111 *
e4a22519 112 * @return array the set of tasks for a group of mailing recipients
2cc569f2 113 * @static
2cc569f2 114 */
00be9182 115 public static function getTask($value) {
2cc569f2
PJ
116 self::tasks();
117 if (!$value || !CRM_Utils_Array::value($value, self::$_tasks)) {
118 // make the print task by default
119 $value = 1;
120 }
121 return array(
122 self::$_tasks[$value]['class'],
123 self::$_tasks[$value]['result'],
124 );
125 }
bf765334 126}