Merge pull request #1847 from eileenmcnaughton/CRM-9683
[civicrm-core.git] / CRM / Case / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates task actions for CiviEvent
38 *
39 */
40class 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 * @access public
77 */
78 function preProcess() {
79 self::preProcessCommon($this);
80 }
81
82 static function preProcessCommon(&$form, $useTable = FALSE) {
83 $form->_caseIds = array();
84
85 $values = $form->controller->exportValues($form->get('searchFormName'));
86
87 $form->_task = $values['task'];
88 $caseTasks = CRM_Case_Task::tasks();
89 $form->assign('taskName', $caseTasks[$form->_task]);
90
91 $ids = array();
92 if ($values['radio_ts'] == 'ts_sel') {
93 foreach ($values as $name => $value) {
94 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
95 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
96 }
97 }
98 }
99 else {
100 $queryParams = $form->get('queryParams');
101 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
102 CRM_Contact_BAO_Query::MODE_CASE
103 );
104 $query->_distinctComponentClause = " ( civicrm_case.id )";
105 $query->_groupByComponentClause = " GROUP BY civicrm_case.id ";
106 $result = $query->searchQuery(0, 0, NULL);
107 while ($result->fetch()) {
108 $ids[] = $result->case_id;
109 }
110 }
111
112 if (!empty($ids)) {
113 $form->_componentClause = ' civicrm_case.id IN ( ' . implode(',', $ids) . ' ) ';
114 $form->assign('totalSelectedCases', count($ids));
115 }
116
117 $form->_caseIds = $form->_componentIds = $ids;
118
119 //set the context for redirection for any task actions
120 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
121 $urlParams = 'force=1';
122 if (CRM_Utils_Rule::qfKey($qfKey)) {
123 $urlParams .= "&qfKey=$qfKey";
124 }
125
126 $session = CRM_Core_Session::singleton();
127 $searchFormName = strtolower($form->get('searchFormName'));
128 if ($searchFormName == 'search') {
129 $session->replaceUserContext(CRM_Utils_System::url('civicrm/case/search', $urlParams));
130 }
131 else {
132 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
133 $urlParams
134 ));
135 }
136 }
137
138 /**
139 * Given the signer id, compute the contact id
140 * since its used for things like send email
141 */
142 public function setContactIDs() {
143 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_caseIds,
144 'civicrm_case'
145 );
146 }
147
148 /**
149 * simple shell that derived classes can call to add buttons to
150 * the form with a customized title for the main Submit
151 *
152 * @param string $title title of the main button
153 * @param string $type button type for the form after processing
154 *
155 * @return void
156 * @access public
157 */
158 function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
159 $this->addButtons(array(
160 array(
161 'type' => $nextType,
162 'name' => $title,
163 'isDefault' => TRUE,
164 ),
165 array(
166 'type' => $backType,
167 'name' => ts('Cancel'),
168 ),
169 )
170 );
171 }
172}
173