Merge pull request #11571 from magnolia61/CRM-21693_Show_Name_in_OnlinePayNow_UI
[civicrm-core.git] / CRM / Case / Form / Search.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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2018
32 */
33
34 /**
35 * This file is for Case search.
36 */
37 class CRM_Case_Form_Search extends CRM_Core_Form_Search {
38
39 /**
40 * The params that are sent to the query
41 *
42 * @var array
43 */
44 protected $_queryParams;
45
46 /**
47 * Are we restricting ourselves to a single contact
48 *
49 * @var boolean
50 */
51 protected $_single = FALSE;
52
53 /**
54 * Are we restricting ourselves to a single contact
55 *
56 * @var boolean
57 */
58 protected $_limit = NULL;
59
60 /**
61 * Prefix for the controller
62 */
63 protected $_prefix = 'case_';
64
65 /**
66 * Processing needed for buildForm and later.
67 */
68 public function preProcess() {
69 $this->set('searchFormName', 'Search');
70
71 //check for civicase access.
72 if (!CRM_Case_BAO_Case::accessCiviCase()) {
73 CRM_Core_Error::fatal(ts('You are not authorized to access this page.'));
74 }
75
76 //validate case configuration.
77 $configured = CRM_Case_BAO_Case::isCaseConfigured();
78 $this->assign('notConfigured', !$configured['configured']);
79 if (!$configured['configured']) {
80 return;
81 }
82
83 /**
84 * set the button names
85 */
86 $this->_searchButtonName = $this->getButtonName('refresh');
87 $this->_actionButtonName = $this->getButtonName('next', 'action');
88
89 $this->_done = FALSE;
90 $this->defaults = array();
91
92 /*
93 * we allow the controller to set force/reset externally, useful when we are being
94 * driven by the wizard framework
95 */
96
97 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean');
98 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
99 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
100 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
101
102 $this->assign('context', $this->_context);
103
104 // get user submitted values
105 // get it from controller only if form has been submitted, else preProcess has set this
106 if (!empty($_POST) && !$this->controller->isModal()) {
107 $this->_formValues = $this->controller->exportValues($this->_name);
108 }
109 else {
110 $this->_formValues = $this->get('formValues');
111 }
112
113 if (empty($this->_formValues)) {
114 if (isset($this->_ssID)) {
115 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
116 }
117 }
118
119 if ($this->_force) {
120 $this->postProcess();
121 $this->set('force', 0);
122 }
123
124 $sortID = NULL;
125 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
126 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
127 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
128 );
129 }
130
131 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
132 $selector = new CRM_Case_Selector_Search($this->_queryParams,
133 $this->_action,
134 NULL,
135 $this->_single,
136 $this->_limit,
137 $this->_context
138 );
139
140 $prefix = NULL;
141 if ($this->_context == 'user') {
142 $prefix = $this->_prefix;
143 }
144
145 $this->assign("{$prefix}limit", $this->_limit);
146 $this->assign("{$prefix}single", $this->_single);
147
148 $controller = new CRM_Core_Selector_Controller($selector,
149 $this->get(CRM_Utils_Pager::PAGE_ID),
150 $sortID,
151 CRM_Core_Action::VIEW,
152 $this,
153 CRM_Core_Selector_Controller::TRANSFER,
154 $prefix
155 );
156 $controller->setEmbedded(TRUE);
157 $controller->moveFromSessionToTemplate();
158
159 $this->assign('summary', $this->get('summary'));
160 }
161
162 /**
163 * Build the form object.
164 */
165 public function buildQuickForm() {
166 parent::buildQuickForm();
167 $this->addSortNameField();
168
169 CRM_Case_BAO_Query::buildSearchForm($this);
170
171 $rows = $this->get('rows');
172 if (is_array($rows)) {
173 if (!$this->_single) {
174 $this->addRowSelectors($rows);
175 }
176
177 $permission = CRM_Core_Permission::getPermission();
178
179 $tasks = CRM_Case_Task::permissionedTaskTitles($permission);
180
181 if (!empty($this->_formValues['case_deleted'])) {
182 unset($tasks[1]);
183 }
184 else {
185 unset($tasks[4]);
186 }
187
188 $this->addTaskMenu($tasks);
189 }
190
191 }
192
193 /**
194 * Get the label for the sortName field if email searching is on.
195 *
196 * (email searching is a setting under search preferences).
197 *
198 * @return string
199 */
200 protected function getSortNameLabelWithEmail() {
201 return ts('Client Name or Email');
202 }
203
204 /**
205 * Get the label for the sortName field if email searching is off.
206 *
207 * (email searching is a setting under search preferences).
208 *
209 * @return string
210 */
211 protected function getSortNameLabelWithOutEmail() {
212 return ts('Client Name');
213 }
214
215 /**
216 * The post processing of the form gets done here.
217 *
218 * Key things done during post processing are
219 * - check for reset or next request. if present, skip post procesing.
220 * - now check if user requested running a saved search, if so, then
221 * the form values associated with the saved search are used for searching.
222 * - if user has done a submit with new values the regular post submissing is
223 * done.
224 * The processing consists of using a Selector / Controller framework for getting the
225 * search results.
226 */
227 public function postProcess() {
228 if ($this->_done) {
229 return;
230 }
231
232 $this->_done = TRUE;
233 $this->_formValues = $this->controller->exportValues($this->_name);
234 $this->fixFormValues();
235
236 if (isset($this->_ssID) && empty($_POST)) {
237 // if we are editing / running a saved search and the form has not been posted
238 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
239 }
240
241 //search for civicase
242 if (!$this->_force) {
243 if (array_key_exists('case_owner', $this->_formValues) && !$this->_formValues['case_owner']) {
244 $this->_formValues['case_owner'] = 0;
245 }
246 }
247
248 if (empty($this->_formValues['case_deleted'])) {
249 $this->_formValues['case_deleted'] = 0;
250 }
251 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
252
253 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
254
255 $this->set('formValues', $this->_formValues);
256 $this->set('queryParams', $this->_queryParams);
257
258 $buttonName = $this->controller->getButtonName();
259 if ($buttonName == $this->_actionButtonName) {
260 // check actionName and if next, then do not repeat a search, since we are going to the next page
261
262 // hack, make sure we reset the task values
263 $stateMachine = $this->controller->getStateMachine();
264 $formName = $stateMachine->getTaskFormName();
265 $this->controller->resetPage($formName);
266 return;
267 }
268
269 $sortID = NULL;
270 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
271 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
272 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
273 );
274 }
275
276 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
277
278 $selector = new CRM_Case_Selector_Search($this->_queryParams,
279 $this->_action,
280 NULL,
281 $this->_single,
282 $this->_limit,
283 $this->_context
284 );
285 $selector->setKey($this->controller->_key);
286
287 $prefix = NULL;
288 if ($this->_context == 'user') {
289 $prefix = $this->_prefix;
290 }
291
292 $this->assign("{$prefix}limit", $this->_limit);
293 $this->assign("{$prefix}single", $this->_single);
294
295 $controller = new CRM_Core_Selector_Controller($selector,
296 $this->get(CRM_Utils_Pager::PAGE_ID),
297 $sortID,
298 CRM_Core_Action::VIEW,
299 $this,
300 CRM_Core_Selector_Controller::SESSION,
301 $prefix
302 );
303 $controller->setEmbedded(TRUE);
304
305 $query = &$selector->getQuery();
306 if ($this->_context == 'user') {
307 $query->setSkipPermission(TRUE);
308 }
309 $controller->run();
310 }
311
312 /**
313 * Add the rules (mainly global rules) for form.
314 *
315 * All local rules are added near the element
316 *
317 * @see valid_date
318 */
319 public function addRules() {
320 $this->addFormRule(array('CRM_Case_Form_Search', 'formRule'));
321 }
322
323 /**
324 * Global validation rules for the form.
325 *
326 * @param array $fields
327 * Posted values of the form.
328 *
329 * @return array|bool
330 */
331 public static function formRule($fields) {
332 $errors = array();
333
334 if (!empty($errors)) {
335 return $errors;
336 }
337
338 return TRUE;
339 }
340
341 /**
342 * Set the default form values.
343 *
344 *
345 * @return array
346 * the default array reference
347 */
348 public function setDefaultValues() {
349 $defaults = array();
350 $defaults = $this->_formValues;
351 return $defaults;
352 }
353
354 public function fixFormValues() {
355 if (!$this->_force) {
356 return;
357 }
358
359 $caseStatus = CRM_Utils_Request::retrieve('status', 'Positive');
360 if ($caseStatus) {
361 $this->_formValues['case_status_id'] = $caseStatus;
362 $this->_defaults['case_status_id'] = $caseStatus;
363 }
364 $caseType = CRM_Utils_Request::retrieve('type', 'Positive');
365 if ($caseType) {
366 $this->_formValues['case_type_id'] = (array) $caseType;
367 $this->_defaults['case_type_id'] = (array) $caseType;
368 }
369
370 $caseFromDate = CRM_Utils_Request::retrieve('pstart', 'Date');
371 if ($caseFromDate) {
372 list($date) = CRM_Utils_Date::setDateDefaults($caseFromDate);
373 $this->_formValues['case_start_date_low'] = $date;
374 $this->_defaults['case_start_date_low'] = $date;
375 }
376
377 $caseToDate = CRM_Utils_Request::retrieve('pend', 'Date');
378 if ($caseToDate) {
379 list($date) = CRM_Utils_Date::setDateDefaults($caseToDate);
380 $this->_formValues['case_start_date_high'] = $date;
381 $this->_defaults['case_start_date_high'] = $date;
382 }
383
384 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
385 if ($cid) {
386 $cid = CRM_Utils_Type::escape($cid, 'Integer');
387 if ($cid > 0) {
388 $this->_formValues['contact_id'] = $cid;
389 list($display, $image) = CRM_Contact_BAO_Contact::getDisplayAndImage($cid);
390 $this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid,
391 'sort_name'
392 );
393 // also assign individual mode to the template
394 $this->_single = TRUE;
395 }
396 }
397 else {
398 // First, if "all" is stored in the session, default to all cases, otherwise default to no selection.
399 $session = CRM_Core_Session::singleton();
400 if (CRM_Utils_Request::retrieve('all', 'Positive', $session)) {
401 $this->_formValues['case_owner'] = 1;
402 $this->_defaults['case_owner'] = 1;
403 }
404 else {
405 $this->_formValues['case_owner'] = 0;
406 $this->_defaults['case_owner'] = 0;
407 }
408
409 // Now if case_owner is set in the url/post, use that instead.
410 $caseOwner = CRM_Utils_Request::retrieve('case_owner', 'Positive');
411 if ($caseOwner) {
412 $this->_formValues['case_owner'] = $caseOwner;
413 $this->_defaults['case_owner'] = $caseOwner;
414 }
415 }
416 }
417
418 /**
419 * @return null
420 */
421 public function getFormValues() {
422 return NULL;
423 }
424
425 /**
426 * Return a descriptive name for the page, used in wizard header
427 *
428 * @return string
429 */
430 public function getTitle() {
431 return ts('Find Cases');
432 }
433
434 }