Merge pull request #301 from colemanw/caseActivityDashlet
[civicrm-core.git] / CRM / Contribute / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 * Files required
38 */
39
40 /**
41 * advanced search, extends basic search
42 */
43 class CRM_Contribute_Form_Search extends CRM_Core_Form {
44
45 /**
46 * Are we forced to run a search
47 *
48 * @var int
49 * @access protected
50 */
51 protected $_force;
52
53 /**
54 * name of search button
55 *
56 * @var string
57 * @access protected
58 */
59 protected $_searchButtonName;
60
61 /**
62 * name of print button
63 *
64 * @var string
65 * @access protected
66 */
67 protected $_printButtonName;
68
69 /**
70 * name of action button
71 *
72 * @var string
73 * @access protected
74 */
75 protected $_actionButtonName;
76
77 /**
78 * form values that we will be using
79 *
80 * @var array
81 * @access protected
82 */
83 protected $_formValues;
84
85 /**
86 * the params that are sent to the query
87 *
88 * @var array
89 * @access protected
90 */
91 protected $_queryParams;
92
93 /**
94 * have we already done this search
95 *
96 * @access protected
97 * @var boolean
98 */
99 protected $_done;
100
101 /**
102 * are we restricting ourselves to a single contact
103 *
104 * @access protected
105 * @var boolean
106 */
107 protected $_single = FALSE;
108
109 /**
110 * are we restricting ourselves to a single contact
111 *
112 * @access protected
113 * @var boolean
114 */
115 protected $_limit = NULL;
116
117 /**
118 * what context are we being invoked from
119 *
120 * @access protected
121 * @var string
122 */
123 protected $_context = NULL;
124
125 protected $_defaults;
126
127 /**
128 * prefix for the controller
129 *
130 */
131 protected $_prefix = "contribute_";
132
133 /**
134 * processing needed for buildForm and later
135 *
136 * @return void
137 * @access public
138 */ function preProcess() {
139 $this->set('searchFormName', 'Search');
140
141 /**
142 * set the button names
143 */
144 $this->_searchButtonName = $this->getButtonName('refresh');
145 $this->_printButtonName = $this->getButtonName('next', 'print');
146 $this->_actionButtonName = $this->getButtonName('next', 'action');
147
148 $this->_done = FALSE;
149 $this->defaults = array();
150
151 /*
152 * we allow the controller to set force/reset externally, useful when we are being
153 * driven by the wizard framework
154 */
155
156 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean', CRM_Core_DAO::$_nullObject);
157 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
158 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
159 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
160
161 $this->assign("context", $this->_context);
162
163 // get user submitted values
164 // get it from controller only if form has been submitted, else preProcess has set this
165 if (!empty($_POST)) {
166 $this->_formValues = $this->controller->exportValues($this->_name);
167 }
168 else {
169 $this->_formValues = $this->get('formValues');
170 }
171
172 //membership ID
173 $memberShipId = CRM_Utils_Request::retrieve('memberId', 'Positive', $this);
174 if (isset($memberShipId)) {
175 $this->_formValues['contribution_membership_id'] = $memberShipId;
176 }
177 $participantId = CRM_Utils_Request::retrieve('participantId', 'Positive', $this);
178 if (isset($participantId)) {
179 $this->_formValues['contribution_participant_id'] = $participantId;
180 }
181
182 if ($this->_force) {
183 $this->postProcess();
184 $this->set('force', 0);
185 }
186
187 $sortID = NULL;
188 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
189 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
190 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
191 );
192 }
193
194 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
195 $selector = new CRM_Contribute_Selector_Search($this->_queryParams,
196 $this->_action,
197 NULL,
198 $this->_single,
199 $this->_limit,
200 $this->_context
201 );
202 $prefix = NULL;
203 if ($this->_context == 'user') {
204 $prefix = $this->_prefix;
205 }
206
207 $this->assign("{$prefix}limit", $this->_limit);
208 $this->assign("{$prefix}single", $this->_single);
209
210 $controller = new CRM_Core_Selector_Controller($selector,
211 $this->get(CRM_Utils_Pager::PAGE_ID),
212 $sortID,
213 CRM_Core_Action::VIEW,
214 $this,
215 CRM_Core_Selector_Controller::TRANSFER,
216 $prefix
217 );
218
219 $controller->setEmbedded(TRUE);
220 $controller->moveFromSessionToTemplate();
221
222 $this->assign('contributionSummary', $this->get('summary'));
223 }
224
225 function setDefaultValues() {
226 if (!CRM_Utils_Array::value('contribution_status',
227 $this->_defaults
228 )) {
229 $this->_defaults['contribution_status'][1] = 1;
230 }
231 return $this->_defaults;
232 }
233
234 /**
235 * Build the form
236 *
237 * @access public
238 *
239 * @return void
240 */
241 function buildQuickForm() {
242 // text for sort_name
243 $this->addElement('text',
244 'sort_name',
245 ts('Contributor Name or Email'),
246 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact',
247 'sort_name'
248 )
249 );
250
251 $this->_group = CRM_Core_PseudoConstant::group();
252
253 // multiselect for groups
254 if ($this->_group) {
255 $this->add('select', 'group', ts('Groups'), $this->_group, FALSE,
256 array('id' => 'group', 'multiple' => 'multiple', 'title' => ts('- select -'))
257 );
258 }
259
260 // multiselect for tags
261 require_once 'CRM/Core/BAO/Tag.php';
262 $contactTags = CRM_Core_BAO_Tag::getTags();
263
264 if ($contactTags) {
265 $this->add('select', 'contact_tags', ts('Tags'), $contactTags, FALSE,
266 array('id' => 'contact_tags', 'multiple' => 'multiple', 'title' => ts('- select -'))
267 );
268 }
269
270 CRM_Contribute_BAO_Query::buildSearchForm($this);
271
272 /*
273 * add form checkboxes for each row. This is needed out here to conform to QF protocol
274 * of all elements being declared in builQuickForm
275 */
276
277 $rows = $this->get('rows');
278 if (is_array($rows)) {
279 if (!$this->_single) {
280 $this->addElement('checkbox',
281 'toggleSelect',
282 NULL,
283 NULL,
284 array('onclick' => "toggleTaskAction( true ); return toggleCheckboxVals('mark_x_',this);")
285 );
286 foreach ($rows as $row) {
287 $this->addElement('checkbox', $row['checkbox'],
288 NULL, NULL,
289 array('onclick' => "toggleTaskAction( true ); return checkSelectedBox('" . $row['checkbox'] . "');")
290 );
291 }
292 }
293
294 $total = $cancel = 0;
295
296 $permission = CRM_Core_Permission::getPermission();
297
298 $tasks = array('' => ts('- actions -')) + CRM_Contribute_Task::permissionedTaskTitles($permission);
299 $this->add('select', 'task', ts('Actions:') . ' ', $tasks);
300 $this->add('submit', $this->_actionButtonName, ts('Go'),
301 array(
302 'class' => 'form-submit',
303 'id' => 'Go',
304 'onclick' => "return checkPerformAction('mark_x', '" . $this->getName() . "', 0);",
305 )
306 );
307
308 $this->add('submit', $this->_printButtonName, ts('Print'),
309 array(
310 'class' => 'form-submit',
311 'onclick' => "return checkPerformAction('mark_x', '" . $this->getName() . "', 1);",
312 )
313 );
314
315 // need to perform tasks on all or selected items ? using radio_ts(task selection) for it
316 $this->addElement('radio', 'radio_ts', NULL, '', 'ts_sel', array('checked' => 'checked'));
317 $this->addElement('radio', 'radio_ts', NULL, '', 'ts_all', array('onclick' => $this->getName() . ".toggleSelect.checked = false; toggleCheckboxVals('mark_x_',this); toggleTaskAction( true );"));
318 }
319
320 // add buttons
321 $this->addButtons(array(
322 array(
323 'type' => 'refresh',
324 'name' => ts('Search'),
325 'isDefault' => TRUE,
326 ),
327 )
328 );
329 }
330
331 /**
332 * The post processing of the form gets done here.
333 *
334 * Key things done during post processing are
335 * - check for reset or next request. if present, skip post procesing.
336 * - now check if user requested running a saved search, if so, then
337 * the form values associated with the saved search are used for searching.
338 * - if user has done a submit with new values the regular post submissing is
339 * done.
340 * The processing consists of using a Selector / Controller framework for getting the
341 * search results.
342 *
343 * @param
344 *
345 * @return void
346 * @access public
347 */
348 function postProcess() {
349 if ($this->_done) {
350 return;
351 }
352
353 $this->_done = TRUE;
354
355 if (!empty($_POST)) {
356 $this->_formValues = $this->controller->exportValues($this->_name);
357 }
358
359 $this->fixFormValues();
360
361 // we don't show test contributions in Contact Summary / User Dashboard
362 // in Search mode by default we hide test contributions
363 if (!CRM_Utils_Array::value('contribution_test',
364 $this->_formValues
365 )) {
366 $this->_formValues["contribution_test"] = 0;
367 }
368
369 foreach (array(
370 'contribution_amount_low', 'contribution_amount_high') as $f) {
371 if (isset($this->_formValues[$f])) {
372 $this->_formValues[$f] = CRM_Utils_Rule::cleanMoney($this->_formValues[$f]);
373 }
374 }
375
376 $config = CRM_Core_Config::singleton();
377 $tags = CRM_Utils_Array::value('contact_tags', $this->_formValues);
378 if ($tags && !is_array($tags)) {
379 unset($this->_formValues['contact_tags']);
380 $this->_formValues['contact_tags'][$tags] = 1;
381 }
382
383 if ($tags && is_array($tags)) {
384 unset($this->_formValues['contact_tags']);
385 foreach($tags as $notImportant => $tagID) {
386 $this->_formValues['contact_tags'][$tagID] = 1;
387 }
388 }
389
390
391 if (!$config->groupTree) {
392 $group = CRM_Utils_Array::value('group', $this->_formValues);
393 if ($group && !is_array($group)) {
394 unset($this->_formValues['group']);
395 $this->_formValues['group'][$group] = 1;
396 }
397
398 if ($group && is_array($group)) {
399 unset($this->_formValues['group']);
400 foreach($group as $notImportant => $groupID) {
401 $this->_formValues['group'][$groupID] = 1;
402 }
403 }
404
405 }
406
407 CRM_Core_BAO_CustomValue::fixFieldValueOfTypeMemo($this->_formValues);
408
409 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
410
411 $this->set('formValues', $this->_formValues);
412 $this->set('queryParams', $this->_queryParams);
413
414 $buttonName = $this->controller->getButtonName();
415 if ($buttonName == $this->_actionButtonName || $buttonName == $this->_printButtonName) {
416 // check actionName and if next, then do not repeat a search, since we are going to the next page
417
418 // hack, make sure we reset the task values
419 $stateMachine = $this->controller->getStateMachine();
420 $formName = $stateMachine->getTaskFormName();
421 $this->controller->resetPage($formName);
422 return;
423 }
424
425
426 $sortID = NULL;
427 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
428 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
429 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
430 );
431 }
432
433 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
434 $selector = new CRM_Contribute_Selector_Search($this->_queryParams,
435 $this->_action,
436 NULL,
437 $this->_single,
438 $this->_limit,
439 $this->_context
440 );
441 $selector->setKey($this->controller->_key);
442
443 $prefix = NULL;
444 if ($this->_context == 'basic' || $this->_context == 'user') {
445 $prefix = $this->_prefix;
446 }
447
448 $controller = new CRM_Core_Selector_Controller($selector,
449 $this->get(CRM_Utils_Pager::PAGE_ID),
450 $sortID,
451 CRM_Core_Action::VIEW,
452 $this,
453 CRM_Core_Selector_Controller::SESSION,
454 $prefix
455 );
456 $controller->setEmbedded(TRUE);
457
458 $query = &$selector->getQuery();
459 if ($this->_context == 'user') {
460 $query->setSkipPermission(TRUE);
461 }
462 $summary = &$query->summaryContribution($this->_context);
463 $this->set('summary', $summary);
464 $this->assign('contributionSummary', $summary);
465 $controller->run();
466 }
467
468 function fixFormValues() {
469 // if this search has been forced
470 // then see if there are any get values, and if so over-ride the post values
471 // note that this means that GET over-rides POST :)
472
473 if (!$this->_force) {
474 return;
475 }
476
477 $status = CRM_Utils_Request::retrieve('status', 'String',
478 CRM_Core_DAO::$_nullObject
479 );
480 if ($status) {
481 $this->_formValues['contribution_status_id'] = array($status => 1);
482 $this->_defaults['contribution_status_id'] = array($status => 1);
483 }
484
485 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
486
487 if ($cid) {
488 $cid = CRM_Utils_Type::escape($cid, 'Integer');
489 if ($cid > 0) {
490 $this->_formValues['contact_id'] = $cid;
491 list($display, $image) = CRM_Contact_BAO_Contact::getDisplayAndImage($cid);
492 $this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid,
493 'sort_name'
494 );
495 // also assign individual mode to the template
496 $this->_single = TRUE;
497 }
498 }
499
500 $lowDate = CRM_Utils_Request::retrieve('start', 'Timestamp',
501 CRM_Core_DAO::$_nullObject
502 );
503 if ($lowDate) {
504 $lowDate = CRM_Utils_Type::escape($lowDate, 'Timestamp');
505 $date = CRM_Utils_Date::setDateDefaults($lowDate);
506 $this->_formValues['contribution_date_low'] = $this->_defaults['contribution_date_low'] = $date[0];
507 }
508
509 $highDate = CRM_Utils_Request::retrieve('end', 'Timestamp',
510 CRM_Core_DAO::$_nullObject
511 );
512 if ($highDate) {
513 $highDate = CRM_Utils_Type::escape($highDate, 'Timestamp');
514 $date = CRM_Utils_Date::setDateDefaults($highDate);
515 $this->_formValues['contribution_date_high'] = $this->_defaults['contribution_date_high'] = $date[0];
516 }
517
518 if ($highDate || $lowDate) {
519 //set the Choose Date Range value
520 $this->_formValues['contribution_date_relative'] = 0;
521 }
522
523 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive',
524 $this
525 );
526
527 $test = CRM_Utils_Request::retrieve('test', 'Boolean',
528 CRM_Core_DAO::$_nullObject
529 );
530 if (isset($test)) {
531 $test = CRM_Utils_Type::escape($test, 'Boolean');
532 $this->_formValues['contribution_test'] = $test;
533 }
534 //Recurring id
535 $recur = CRM_Utils_Request::retrieve('recur', 'Positive', $this, FALSE);
536 if ($recur) {
537 $this->_formValues['contribution_recur_id'] = $recur;
538 $this->_formValues['contribution_recurring'] = 1;
539 }
540
541 //check for contribution page id.
542 $contribPageId = CRM_Utils_Request::retrieve('pid', 'Positive', $this);
543 if ($contribPageId) {
544 $this->_formValues['contribution_page_id'] = $contribPageId;
545 }
546
547 //give values to default.
548 $this->_defaults = $this->_formValues;
549 }
550
551 /**
552 * Return a descriptive name for the page, used in wizard header
553 *
554 * @return string
555 * @access public
556 */
557 public function getTitle() {
558 return ts('Find Contributions');
559 }
560 }
561