add status preference dao to ignore list
[civicrm-core.git] / CRM / Case / Form / 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 * This class generates task actions for CiviEvent
38 *
39 */
40 class CRM_Case_Form_Task extends CRM_Core_Form {
41
42 /**
43 * The task being performed
44 *
45 * @var int
46 */
47 protected $_task;
48
49 /**
50 * The additional clause that we restrict the search with
51 *
52 * @var string
53 */
54 protected $_componentClause = NULL;
55
56 /**
57 * The array that holds all the component ids
58 *
59 * @var array
60 */
61 protected $_componentIds;
62
63 /**
64 * The array that holds all the case ids
65 *
66 * @var array
67 */
68 protected $_caseIds;
69
70 /**
71 * Build all the data structures needed to build the form.
72 *
73 * @param
74 *
75 * @return void
76 */
77 public function preProcess() {
78 self::preProcessCommon($this);
79 }
80
81 /**
82 * @param CRM_Core_Form $form
83 * @param bool $useTable
84 */
85 public static function preProcessCommon(&$form, $useTable = FALSE) {
86 $form->_caseIds = array();
87
88 $values = $form->controller->exportValues($form->get('searchFormName'));
89
90 $form->_task = $values['task'];
91 $caseTasks = CRM_Case_Task::tasks();
92 $form->assign('taskName', $caseTasks[$form->_task]);
93
94 $ids = array();
95 if ($values['radio_ts'] == 'ts_sel') {
96 foreach ($values as $name => $value) {
97 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
98 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
99 }
100 }
101 }
102 else {
103 $queryParams = $form->get('queryParams');
104 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
105 CRM_Contact_BAO_Query::MODE_CASE
106 );
107 $query->_distinctComponentClause = " ( civicrm_case.id )";
108 $query->_groupByComponentClause = " GROUP BY civicrm_case.id ";
109 $result = $query->searchQuery(0, 0, NULL);
110 while ($result->fetch()) {
111 $ids[] = $result->case_id;
112 }
113 }
114
115 if (!empty($ids)) {
116 $form->_componentClause = ' civicrm_case.id IN ( ' . implode(',', $ids) . ' ) ';
117 $form->assign('totalSelectedCases', count($ids));
118 }
119
120 $form->_caseIds = $form->_componentIds = $ids;
121
122 //set the context for redirection for any task actions
123 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
124 $urlParams = 'force=1';
125 if (CRM_Utils_Rule::qfKey($qfKey)) {
126 $urlParams .= "&qfKey=$qfKey";
127 }
128
129 $session = CRM_Core_Session::singleton();
130 $searchFormName = strtolower($form->get('searchFormName'));
131 if ($searchFormName == 'search') {
132 $session->replaceUserContext(CRM_Utils_System::url('civicrm/case/search', $urlParams));
133 }
134 else {
135 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
136 $urlParams
137 ));
138 }
139 }
140
141 /**
142 * Given the signer id, compute the contact id
143 * since its used for things like send email
144 */
145 public function setContactIDs() {
146 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_caseIds,
147 'civicrm_case'
148 );
149 }
150
151 /**
152 * Simple shell that derived classes can call to add buttons to
153 * the form with a customized title for the main Submit
154 *
155 * @param string $title
156 * Title of the main button.
157 * @param string $nextType
158 * Button type for the form after processing.
159 * @param string $backType
160 * @param bool $submitOnce
161 *
162 * @return void
163 */
164 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
165 $this->addButtons(array(
166 array(
167 'type' => $nextType,
168 'name' => $title,
169 'isDefault' => TRUE,
170 ),
171 array(
172 'type' => $backType,
173 'name' => ts('Cancel'),
174 ),
175 )
176 );
177 }
178
179 }