Re Add CRM_Case_Form_Task::PreProcessCommon()
[civicrm-core.git] / CRM / Case / Form / Task.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 * @package CRM
30 * @copyright CiviCRM LLC (c) 2004-2018
31 */
32
33 /**
34 * This class generates form task actions for CiviCase.
35 */
36 class CRM_Case_Form_Task extends CRM_Core_Form_Task {
37
38 // Must be set to entity table name (eg. civicrm_participant) by child class
39 static $tableName = 'civicrm_case';
40 // Must be set to entity shortname (eg. event)
41 static $entityShortname = 'case';
42
43 /**
44 * The array that holds all the case ids
45 *
46 * @var array
47 */
48 public $_caseIds;
49
50 /**
51 * Build all the data structures needed to build the form.
52 */
53 public function preProcess() {
54 self::preProcessCommon($this);
55 }
56
57 /**
58 * @param CRM_Core_Form $form
59 */
60 public static function preProcessCommon(&$form) {
61 $form->_caseIds = array();
62
63 $values = $form->controller->exportValues($form->get('searchFormName'));
64
65 $form->_task = $values['task'];
66 $caseTasks = CRM_Case_Task::tasks();
67 $form->assign('taskName', $caseTasks[$form->_task]);
68
69 $ids = array();
70 if ($values['radio_ts'] == 'ts_sel') {
71 foreach ($values as $name => $value) {
72 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
73 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
74 }
75 }
76 }
77 else {
78 $queryParams = $form->get('queryParams');
79 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
80 CRM_Contact_BAO_Query::MODE_CASE
81 );
82 $query->_distinctComponentClause = " ( civicrm_case.id )";
83 $query->_groupByComponentClause = " GROUP BY civicrm_case.id ";
84 $result = $query->searchQuery(0, 0, NULL);
85 while ($result->fetch()) {
86 $ids[] = $result->case_id;
87 }
88 }
89
90 if (!empty($ids)) {
91 $form->_componentClause = ' civicrm_case.id IN ( ' . implode(',', $ids) . ' ) ';
92 $form->assign('totalSelectedCases', count($ids));
93 }
94
95 $form->_caseIds = $form->_entityIds = $form->_componentIds = $ids;
96
97 //set the context for redirection for any task actions
98 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
99 $urlParams = 'force=1';
100 if (CRM_Utils_Rule::qfKey($qfKey)) {
101 $urlParams .= "&qfKey=$qfKey";
102 }
103
104 $session = CRM_Core_Session::singleton();
105 $searchFormName = strtolower($form->get('searchFormName'));
106 if ($searchFormName == 'search') {
107 $session->replaceUserContext(CRM_Utils_System::url('civicrm/case/search', $urlParams));
108 }
109 else {
110 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
111 $urlParams
112 ));
113 }
114 }
115
116 }