Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Contribute / Selector / Search.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
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 */
33
34/**
35 * This class is used to retrieve and display a range of
36 * contacts that match the given criteria (specifically for
37 * results of advanced search options.
38 *
39 */
40class CRM_Contribute_Selector_Search extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
41
42 /**
43 * This defines two actions- View and Edit.
44 *
45 * @var array
46 */
47 static $_links = NULL;
48
49 /**
50 * We use desc to remind us what that column is, name is used in the tpl
51 *
52 * @var array
53 */
54 static $_columnHeaders;
55
56 /**
57 * Properties of contact we're interested in displaying
58 * @var array
59 */
60 static $_properties = array(
61 'contact_id',
62 'contribution_id',
63 'contact_type',
64 'sort_name',
65 'amount_level',
66 'total_amount',
67 'financial_type',
68 'contribution_source',
69 'receive_date',
70 'thankyou_date',
71 'contribution_status_id',
72 'contribution_status',
73 'cancel_date',
74 'product_name',
75 'is_test',
76 'contribution_recur_id',
77 'receipt_date',
78 'membership_id',
79 'currency',
80 'contribution_campaign_id',
81 'contribution_soft_credit_name',
82 'contribution_soft_credit_contact_id',
83 'contribution_soft_credit_amount',
84 'contribution_soft_credit_type',
85 );
86
87 /**
88 * Are we restricting ourselves to a single contact
89 *
90 * @var boolean
91 */
92 protected $_single = FALSE;
93
94 /**
95 * Are we restricting ourselves to a single contact
96 *
97 * @var boolean
98 */
99 protected $_limit = NULL;
100
101 /**
102 * What context are we being invoked from
103 *
104 * @var string
105 */
106 protected $_context = NULL;
107
108 /**
109 * What component context are we being invoked from
110 *
111 * @var string
112 */
113 protected $_compContext = NULL;
114
115 /**
116 * QueryParams is the array returned by exportValues called on
117 * the HTML_QuickForm_Controller for that page.
118 *
119 * @var array
120 */
121 public $_queryParams;
122
123 /**
124 * Represent the type of selector
125 *
126 * @var int
127 */
128 protected $_action;
129
130 /**
131 * The additional clause that we restrict the search with
132 *
133 * @var string
134 */
135 protected $_contributionClause = NULL;
136
137 /**
138 * The query object
139 *
140 * @var string
141 */
142 protected $_query;
143
144 protected $_includeSoftCredits = FALSE;
145
146 /**
147 * Class constructor.
148 *
149 * @param array $queryParams
150 * Array of parameters for query.
151 * @param \const|int $action - action of search basic or advanced.
152 * @param string $contributionClause
153 * If the caller wants to further restrict the search (used in contributions).
154 * @param bool $single
155 * Are we dealing only with one contact?.
156 * @param int $limit
157 * How many contributions do we want returned.
158 *
159 * @param string $context
160 * @param null $compContext
161 *
162 * @return \CRM_Contribute_Selector_Search
163 */
164 public function __construct(
165 &$queryParams,
166 $action = CRM_Core_Action::NONE,
167 $contributionClause = NULL,
168 $single = FALSE,
169 $limit = NULL,
170 $context = 'search',
171 $compContext = NULL
172 ) {
173
174 // submitted form values
175 $this->_queryParams = &$queryParams;
176
177 $this->_single = $single;
178 $this->_limit = $limit;
179 $this->_context = $context;
180 $this->_compContext = $compContext;
181
182 $this->_contributionClause = $contributionClause;
183
184 // type of selector
185 $this->_action = $action;
186
187 $this->_includeSoftCredits = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($this->_queryParams);
188 $this->_query = new CRM_Contact_BAO_Query(
189 $this->_queryParams,
190 CRM_Contribute_BAO_Query::defaultReturnProperties(
191 CRM_Contact_BAO_Query::MODE_CONTRIBUTE,
192 FALSE
193 ),
194 NULL, FALSE, FALSE,
195 CRM_Contact_BAO_Query::MODE_CONTRIBUTE
196 );
197 if ($this->_includeSoftCredits) {
198 $this->_query->_rowCountClause = " count(civicrm_contribution.id)";
199 $this->_query->_groupByComponentClause = " GROUP BY contribution_search_scredit_combined.id, contribution_search_scredit_combined.contact_id, contribution_search_scredit_combined.scredit_id ";
200 }
201 else {
202 $this->_query->_distinctComponentClause = " civicrm_contribution.id";
203 $this->_query->_groupByComponentClause = " GROUP BY civicrm_contribution.id ";
204 }
205 }
206
207 /**
208 * This method returns the links that are given for each search row.
209 * currently the links added for each row are
210 *
211 * - View
212 * - Edit
213 *
214 * @param int $componentId
215 * @param null $componentAction
216 * @param null $key
217 * @param null $compContext
218 *
219 * @return array
220 */
221 public static function &links($componentId = NULL, $componentAction = NULL, $key = NULL, $compContext = NULL) {
222 $extraParams = NULL;
223 if ($componentId) {
224 $extraParams = "&compId={$componentId}&compAction={$componentAction}";
225 }
226 if ($compContext) {
227 $extraParams .= "&compContext={$compContext}";
228 }
229 if ($key) {
230 $extraParams .= "&key={$key}";
231 }
232
233 if (!(self::$_links)) {
234 self::$_links = array(
235 CRM_Core_Action::VIEW => array(
236 'name' => ts('View'),
237 'url' => 'civicrm/contact/view/contribution',
238 'qs' => "reset=1&id=%%id%%&cid=%%cid%%&action=view&context=%%cxt%%&selectedChild=contribute{$extraParams}",
239 'title' => ts('View Contribution'),
240 ),
241 CRM_Core_Action::UPDATE => array(
242 'name' => ts('Edit'),
243 'url' => 'civicrm/contact/view/contribution',
244 'qs' => "reset=1&action=update&id=%%id%%&cid=%%cid%%&context=%%cxt%%{$extraParams}",
245 'title' => ts('Edit Contribution'),
246 ),
247 CRM_Core_Action::DELETE => array(
248 'name' => ts('Delete'),
249 'url' => 'civicrm/contact/view/contribution',
250 'qs' => "reset=1&action=delete&id=%%id%%&cid=%%cid%%&context=%%cxt%%{$extraParams}",
251 'title' => ts('Delete Contribution'),
252 ),
253 );
254 }
255 return self::$_links;
256 }
257
258 /**
259 * Getter for array of the parameters required for creating pager.
260 *
261 * @param $action
262 * @param array $params
263 */
264 public function getPagerParams($action, &$params) {
265 $params['status'] = ts('Contribution') . ' %%StatusMessage%%';
266 $params['csvString'] = NULL;
267 if ($this->_limit) {
268 $params['rowCount'] = $this->_limit;
269 }
270 else {
271 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
272 }
273
274 $params['buttonTop'] = 'PagerTopButton';
275 $params['buttonBottom'] = 'PagerBottomButton';
276 }
277
278 /**
279 * Returns total number of rows for the query.
280 *
281 * @param string $action
282 *
283 * @return int
284 * Total number of rows
285 */
286 public function getTotalCount($action) {
287 return $this->_query->searchQuery(0, 0, NULL,
288 TRUE, FALSE,
289 FALSE, FALSE,
290 FALSE,
291 $this->_contributionClause
292 );
293 }
294
295 /**
296 * Returns all the rows in the given offset and rowCount.
297 *
298 * @param string $action
299 * The action being performed.
300 * @param int $offset
301 * The row number to start from.
302 * @param int $rowCount
303 * The number of rows to return.
304 * @param string $sort
305 * The sql string that describes the sort order.
306 * @param string $output
307 * What should the result set include (web/email/csv).
308 *
309 * @return int
310 * the total number of rows for this action
311 */
312 public function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
313 if ($this->_includeSoftCredits) {
314 // especial sort order when rows include soft credits
315 $sort = "civicrm_contribution.receive_date DESC, civicrm_contribution.id, civicrm_contribution_soft.id";
316 }
317 $result = $this->_query->searchQuery($offset, $rowCount, $sort,
318 FALSE, FALSE,
319 FALSE, FALSE,
320 FALSE,
321 $this->_contributionClause
322 );
323 // process the result of the query
324 $rows = array();
325
326 //CRM-4418 check for view/edit/delete
327 $permissions = array(CRM_Core_Permission::VIEW);
328 if (CRM_Core_Permission::check('edit contributions')) {
329 $permissions[] = CRM_Core_Permission::EDIT;
330 }
331 if (CRM_Core_Permission::check('delete in CiviContribute')) {
332 $permissions[] = CRM_Core_Permission::DELETE;
333 }
334 $mask = CRM_Core_Action::mask($permissions);
335
336 $qfKey = $this->_key;
337 $componentId = $componentContext = NULL;
338 if ($this->_context != 'contribute') {
339 $qfKey = CRM_Utils_Request::retrieve('key', 'String', CRM_Core_DAO::$_nullObject);
340 $componentId = CRM_Utils_Request::retrieve('id', 'Positive', CRM_Core_DAO::$_nullObject);
341 $componentAction = CRM_Utils_Request::retrieve('action', 'String', CRM_Core_DAO::$_nullObject);
342 $componentContext = CRM_Utils_Request::retrieve('compContext', 'String', CRM_Core_DAO::$_nullObject);
343
344 if (!$componentContext &&
345 $this->_compContext
346 ) {
347 $componentContext = $this->_compContext;
348 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', CRM_Core_DAO::$_nullObject, NULL, FALSE, 'REQUEST');
349 }
350 }
351
352 // get all contribution status
353 $contributionStatuses = CRM_Core_OptionGroup::values('contribution_status',
354 FALSE, FALSE, FALSE, NULL, 'name', FALSE
355 );
356
357 //get all campaigns.
358 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
359
360 while ($result->fetch()) {
361 $row = array();
362 // the columns we are interested in
363 foreach (self::$_properties as $property) {
364 if (property_exists($result, $property)) {
365 $row[$property] = $result->$property;
366 }
367 }
368
369 //carry campaign on selectors.
370 $row['campaign'] = CRM_Utils_Array::value($result->contribution_campaign_id, $allCampaigns);
371 $row['campaign_id'] = $result->contribution_campaign_id;
372
373 // add contribution status name
374 $row['contribution_status_name'] = CRM_Utils_Array::value($row['contribution_status_id'],
375 $contributionStatuses
376 );
377
378 if ($result->is_pay_later && CRM_Utils_Array::value('contribution_status_name', $row) == 'Pending') {
379 $row['contribution_status'] .= ' (' . ts('Pay Later') . ')';
380 }
381 elseif (CRM_Utils_Array::value('contribution_status_name', $row) == 'Pending') {
382 $row['contribution_status'] .= ' (' . ts('Incomplete Transaction') . ')';
383 }
384
385 if ($row['is_test']) {
386 $row['financial_type'] = $row['financial_type'] . ' (' . ts('test') . ')';
387 }
388
389 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->contribution_id;
390
391 $actions = array(
392 'id' => $result->contribution_id,
393 'cid' => $result->contact_id,
394 'cxt' => $this->_context,
395 );
396
397 $row['action'] = CRM_Core_Action::formLink(
398 self::links($componentId,
399 $componentAction,
400 $qfKey,
401 $componentContext
402 ),
403 $mask, $actions,
404 ts('more'),
405 FALSE,
406 'contribution.selector.row',
407 'Contribution',
408 $result->contribution_id
409 );
410
411 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ? $result->contact_sub_type : $result->contact_type, FALSE, $result->contact_id
412 );
413
414 if (!empty($row['amount_level'])) {
415 CRM_Event_BAO_Participant::fixEventLevel($row['amount_level']);
416 }
417
418 $rows[] = $row;
419 }
420
421 return $rows;
422 }
423
424 /**
425 * @inheritDoc
426 */
427 public function getQILL() {
428 return $this->_query->qill();
429 }
430
431 /**
432 * Returns the column headers as an array of tuples:
433 * (name, sortName (key to the sort array))
434 *
435 * @param string $action
436 * The action being performed.
437 * @param string $output
438 * What should the result set include (web/email/csv).
439 *
440 * @return array
441 * the column headers that need to be displayed
442 */
443 public function &getColumnHeaders($action = NULL, $output = NULL) {
444 self::$_columnHeaders = array(
445 array(
446 'name' => $this->_includeSoftCredits ? ts('Contribution Amount') : ts('Amount'),
447 'sort' => 'total_amount',
448 'direction' => CRM_Utils_Sort::DONTCARE,
449 ),
450 );
451 if ($this->_includeSoftCredits) {
452 self::$_columnHeaders
453 = array_merge(
454 self::$_columnHeaders,
455 array(
456 array(
457 'name' => ts('Soft Credit Amount'),
458 'sort' => 'contribution_soft_credit_amount',
459 'direction' => CRM_Utils_Sort::DONTCARE,
460 ),
461 )
462 );
463 }
464 self::$_columnHeaders
465 = array_merge(
466 self::$_columnHeaders,
467 array(
468 array(
469 'name' => ts('Type'),
470 'sort' => 'financial_type',
471 'direction' => CRM_Utils_Sort::DONTCARE,
472 ),
473 array(
474 'name' => ts('Source'),
475 'sort' => 'contribution_source',
476 'direction' => CRM_Utils_Sort::DONTCARE,
477 ),
478 array(
479 'name' => ts('Received'),
480 'sort' => 'receive_date',
481 'direction' => CRM_Utils_Sort::DESCENDING,
482 ),
483 array(
484 'name' => ts('Thank-you Sent'),
485 'sort' => 'thankyou_date',
486 'direction' => CRM_Utils_Sort::DONTCARE,
487 ),
488 array(
489 'name' => ts('Status'),
490 'sort' => 'contribution_status',
491 'direction' => CRM_Utils_Sort::DONTCARE,
492 ),
493 array(
494 'name' => ts('Premium'),
495 'sort' => 'product_name',
496 'direction' => CRM_Utils_Sort::DONTCARE,
497 ),
498 )
499 );
500 if (!$this->_single) {
501 $pre = array(
502 array('desc' => ts('Contact Type')),
503 array(
504 'name' => ts('Name'),
505 'sort' => 'sort_name',
506 'direction' => CRM_Utils_Sort::DONTCARE,
507 ),
508 );
509 self::$_columnHeaders = array_merge($pre, self::$_columnHeaders);
510 }
511 if ($this->_includeSoftCredits) {
512 self::$_columnHeaders = array_merge(
513 self::$_columnHeaders,
514 array(
515 array(
516 'name' => ts('Soft Credit For'),
517 'sort' => 'contribution_soft_credit_name',
518 'direction' => CRM_Utils_Sort::DONTCARE,
519 ),
520 array(
521 'name' => ts('Soft Credit Type'),
522 'sort' => 'contribution_soft_credit_type',
523 'direction' => CRM_Utils_Sort::ASCENDING,
524 ),
525 )
526 );
527 }
528 self::$_columnHeaders
529 = array_merge(
530 self::$_columnHeaders, array(
531 array('desc' => ts('Actions')),
532 )
533 );
534 return self::$_columnHeaders;
535 }
536
537 /**
538 * @return mixed
539 */
540 public function alphabetQuery() {
541 return $this->_query->searchQuery(NULL, NULL, NULL, FALSE, FALSE, TRUE);
542 }
543
544 /**
545 * @return string
546 */
547 public function &getQuery() {
548 return $this->_query;
549 }
550
551 /**
552 * Name of export file.
553 *
554 * @param string $output
555 * Type of output.
556 *
557 * @return string
558 * name of the file
559 */
560 public function getExportFileName($output = 'csv') {
561 return ts('CiviCRM Contribution Search');
562 }
563
564 /**
565 * @return mixed
566 */
567 public function getSummary() {
568 return $this->_query->summaryContribution($this->_context);
569 }
570
571}