Merge pull request #4820 from kurund/CRM-15705
[civicrm-core.git] / CRM / Pledge / BAO / Query.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4 +--------------------------------------------------------------------+
39de6fd5 5 | CiviCRM version 4.6 |
6a488035 6 +--------------------------------------------------------------------+
06b69b18 7 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27*/
28
29/**
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36class CRM_Pledge_BAO_Query {
ffd93213
EM
37 /**
38 * @return array
39 */
00be9182 40 public static function &getFields() {
6a488035
TO
41 $fields = CRM_Pledge_BAO_Pledge::exportableFields();
42 return $fields;
43 }
44
45 /**
100fef9d 46 * Build select for Pledge
6a488035 47 *
6c8f6e67
EM
48 * @param $query
49 *
6a488035 50 * @return void
6a488035 51 */
00be9182 52 public static function select(&$query) {
8cc574cf 53 if (($query->_mode & CRM_Contact_BAO_Query::MODE_PLEDGE) || !empty($query->_returnProperties['pledge_id'])) {
6a488035
TO
54 $query->_select['pledge_id'] = 'civicrm_pledge.id as pledge_id';
55 $query->_element['pledge_id'] = 1;
56 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
57 }
58
59 //add pledge select
a7488080 60 if (!empty($query->_returnProperties['pledge_amount'])) {
6a488035
TO
61 $query->_select['pledge_amount'] = 'civicrm_pledge.amount as pledge_amount';
62 $query->_element['pledge_amount'] = 1;
63 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
64 }
65
a7488080 66 if (!empty($query->_returnProperties['pledge_create_date'])) {
6a488035
TO
67 $query->_select['pledge_create_date'] = 'civicrm_pledge.create_date as pledge_create_date';
68 $query->_element['pledge_create_date'] = 1;
69 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
70 }
71
a7488080 72 if (!empty($query->_returnProperties['pledge_status_id'])) {
6a488035
TO
73 $query->_select['pledge_status_id'] = 'pledge_status.value as pledge_status_id';
74 $query->_element['pledge_status'] = 1;
75 $query->_tables['pledge_status'] = $query->_whereTables['pledge_status'] = 1;
76 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
77 }
78
a7488080 79 if (!empty($query->_returnProperties['pledge_status'])) {
6a488035
TO
80 $query->_select['pledge_status'] = 'pledge_status.label as pledge_status';
81 $query->_element['pledge_status'] = 1;
82 $query->_tables['pledge_status'] = $query->_whereTables['pledge_status'] = 1;
83 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
84 }
85
a7488080 86 if (!empty($query->_returnProperties['pledge_total_paid'])) {
6a488035
TO
87 $query->_select['pledge_total_paid'] = ' (SELECT sum(civicrm_pledge_payment.actual_amount) FROM civicrm_pledge_payment WHERE civicrm_pledge_payment.pledge_id = civicrm_pledge.id AND civicrm_pledge_payment.status_id = 1 ) as pledge_total_paid';
88 $query->_element['pledge_total_paid'] = 1;
89 }
90
a7488080 91 if (!empty($query->_returnProperties['pledge_next_pay_date'])) {
6a488035
TO
92 $query->_select['pledge_next_pay_date'] = " (SELECT civicrm_pledge_payment.scheduled_date FROM civicrm_pledge_payment WHERE civicrm_pledge_payment.pledge_id = civicrm_pledge.id AND civicrm_pledge_payment.status_id IN ( 2, 6 ) ORDER BY civicrm_pledge_payment.scheduled_date ASC LIMIT 0, 1) as pledge_next_pay_date";
93 $query->_element['pledge_next_pay_date'] = 1;
94 }
95
a7488080 96 if (!empty($query->_returnProperties['pledge_next_pay_amount'])) {
6a488035
TO
97 $query->_select['pledge_next_pay_amount'] = " (SELECT civicrm_pledge_payment.scheduled_amount FROM civicrm_pledge_payment WHERE civicrm_pledge_payment.pledge_id = civicrm_pledge.id AND civicrm_pledge_payment.status_id = 2 ORDER BY civicrm_pledge_payment.scheduled_date ASC LIMIT 0, 1) as pledge_next_pay_amount";
98 $query->_element['pledge_next_pay_amount'] = 1;
99
100 $query->_select['pledge_outstanding_amount'] = " (SELECT sum(civicrm_pledge_payment.scheduled_amount) FROM civicrm_pledge_payment WHERE civicrm_pledge_payment.pledge_id = civicrm_pledge.id AND civicrm_pledge_payment.status_id = 6 ) as pledge_outstanding_amount";
101 $query->_element['pledge_outstanding_amount'] = 1;
102 }
103
a7488080 104 if (!empty($query->_returnProperties['pledge_financial_type'])) {
6a488035
TO
105 $query->_select['pledge_financial_type'] = "(SELECT civicrm_financial_type.name FROM civicrm_financial_type WHERE civicrm_financial_type.id = civicrm_pledge.financial_type_id) as pledge_financial_type";
106 $query->_element['pledge_financial_type'] = 1;
107 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
108 }
109
a7488080 110 if (!empty($query->_returnProperties['pledge_contribution_page_id'])) {
6a488035
TO
111 $query->_select['pledge_contribution_page_id'] = 'civicrm_pledge.contribution_page_id as pledge_contribution_page_id';
112 $query->_element['pledge_contribution_page_id'] = 1;
113 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
114 }
115
a7488080 116 if (!empty($query->_returnProperties['pledge_payment_id'])) {
6a488035
TO
117 $query->_select['pledge_payment_id'] = 'civicrm_pledge_payment.id as pledge_payment_id';
118 $query->_element['pledge_payment_id'] = 1;
119 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
120 }
121
a7488080 122 if (!empty($query->_returnProperties['pledge_payment_scheduled_amount'])) {
6a488035
TO
123 $query->_select['pledge_payment_scheduled_amount'] = 'civicrm_pledge_payment.scheduled_amount as pledge_payment_scheduled_amount';
124 $query->_element['pledge_payment_scheduled_amount'] = 1;
125 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
126 }
127
a7488080 128 if (!empty($query->_returnProperties['pledge_payment_scheduled_date'])) {
6a488035
TO
129 $query->_select['pledge_payment_scheduled_date'] = 'civicrm_pledge_payment.scheduled_date as pledge_payment_scheduled_date';
130 $query->_element['pledge_payment_scheduled_date'] = 1;
131 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
132 }
133
a7488080 134 if (!empty($query->_returnProperties['pledge_payment_paid_amount'])) {
6a488035
TO
135 $query->_select['pledge_payment_paid_amount'] = 'civicrm_pledge_payment.actual_amount as pledge_payment_paid_amount';
136 $query->_element['pledge_payment_paid_amount'] = 1;
137 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
138 }
139
a7488080 140 if (!empty($query->_returnProperties['pledge_payment_paid_date'])) {
6a488035
TO
141 $query->_select['pledge_payment_paid_date'] = 'payment_contribution.receive_date as pledge_payment_paid_date';
142 $query->_element['pledge_payment_paid_date'] = 1;
143 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
144 $query->_tables['payment_contribution'] = $query->_whereTables['payment_contribution'] = 1;
145 }
146
a7488080 147 if (!empty($query->_returnProperties['pledge_payment_reminder_date'])) {
6a488035
TO
148 $query->_select['pledge_payment_reminder_date'] = 'civicrm_pledge_payment.reminder_date as pledge_payment_reminder_date';
149 $query->_element['pledge_payment_reminder_date'] = 1;
150 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
151 }
152
a7488080 153 if (!empty($query->_returnProperties['pledge_payment_reminder_count'])) {
6a488035
TO
154 $query->_select['pledge_payment_reminder_count'] = 'civicrm_pledge_payment.reminder_count as pledge_payment_reminder_count';
155 $query->_element['pledge_payment_reminder_count'] = 1;
156 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
157 }
158
a7488080 159 if (!empty($query->_returnProperties['pledge_payment_status_id'])) {
6a488035
TO
160 $query->_select['pledge_payment_status_id'] = 'payment_status.name as pledge_payment_status_id';
161 $query->_element['pledge_payment_status_id'] = 1;
162 $query->_tables['payment_status'] = $query->_whereTables['payment_status'] = 1;
163 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
164 }
165
a7488080 166 if (!empty($query->_returnProperties['pledge_payment_status'])) {
6a488035
TO
167 $query->_select['pledge_payment_status'] = 'payment_status.label as pledge_payment_status';
168 $query->_element['pledge_payment_status'] = 1;
169 $query->_tables['payment_status'] = $query->_whereTables['payment_status'] = 1;
170 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
171 }
172
a7488080 173 if (!empty($query->_returnProperties['pledge_frequency_interval'])) {
6a488035
TO
174 $query->_select['pledge_frequency_interval'] = 'civicrm_pledge.frequency_interval as pledge_frequency_interval';
175 $query->_element['pledge_frequency_interval'] = 1;
176 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
177 }
178
a7488080 179 if (!empty($query->_returnProperties['pledge_frequency_unit'])) {
6a488035
TO
180 $query->_select['pledge_frequency_unit'] = 'civicrm_pledge.frequency_unit as pledge_frequency_unit';
181 $query->_element['pledge_frequency_unit'] = 1;
182 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
183 }
184
a7488080 185 if (!empty($query->_returnProperties['pledge_is_test'])) {
6a488035
TO
186 $query->_select['pledge_is_test'] = 'civicrm_pledge.is_test as pledge_is_test';
187 $query->_element['pledge_is_test'] = 1;
188 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
189 }
a7488080 190 if (!empty($query->_returnProperties['pledge_campaign_id'])) {
6a488035
TO
191 $query->_select['pledge_campaign_id'] = 'civicrm_pledge.campaign_id as pledge_campaign_id';
192 $query->_element['pledge_campaign_id'] = 1;
193 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
194 }
195
a7488080 196 if (!empty($query->_returnProperties['pledge_currency'])) {
6a488035
TO
197 $query->_select['pledge_currency'] = 'civicrm_pledge.currency as pledge_currency';
198 $query->_element['pledge_currency'] = 1;
199 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
200 }
201 }
202
ffd93213
EM
203 /**
204 * @param $query
205 */
00be9182 206 public static function where(&$query) {
28c666be 207 $grouping = NULL;
6a488035 208 foreach (array_keys($query->_params) as $id) {
a7488080 209 if (empty($query->_params[$id][0])) {
6a488035
TO
210 continue;
211 }
212 if (substr($query->_params[$id][0], 0, 7) == 'pledge_') {
213 if ($query->_mode == CRM_Contact_BAO_QUERY::MODE_CONTACTS) {
214 $query->_useDistinct = TRUE;
215 }
6a488035
TO
216 $grouping = $query->_params[$id][3];
217 self::whereClauseSingle($query->_params[$id], $query);
218 }
219 }
6a488035
TO
220 }
221
ffd93213
EM
222 /**
223 * @param $values
224 * @param $query
225 */
00be9182 226 public static function whereClauseSingle(&$values, &$query) {
6a488035
TO
227 list($name, $op, $value, $grouping, $wildcard) = $values;
228
229 switch ($name) {
230 case 'pledge_create_date_low':
231 case 'pledge_create_date_high':
232 // process to / from date
233 $query->dateQueryBuilder($values,
234 'civicrm_pledge', 'pledge_create_date', 'create_date', 'Pledge Made'
235 );
236 case 'pledge_start_date_low':
237 case 'pledge_start_date_high':
238 // process to / from date
239 $query->dateQueryBuilder($values,
240 'civicrm_pledge', 'pledge_start_date', 'start_date', 'Pledge Start Date'
241 );
242 return;
243
244 case 'pledge_end_date_low':
245 case 'pledge_end_date_high':
246 // process to / from date
247 $query->dateQueryBuilder($values,
248 'civicrm_pledge', 'pledge_end_date', 'end_date', 'Pledge End Date'
249 );
250 return;
251
252 case 'pledge_payment_date_low':
253 case 'pledge_payment_date_high':
254 // process to / from date
255 $query->dateQueryBuilder($values,
256 'civicrm_pledge_payment', 'pledge_payment_date', 'scheduled_date', 'Payment Scheduled'
257 );
258 return;
259
260 case 'pledge_amount':
261 case 'pledge_amount_low':
262 case 'pledge_amount_high':
263 // process min/max amount
264 $query->numberRangeBuilder($values,
265 'civicrm_pledge', 'pledge_amount', 'amount', 'Pledge Amount'
266 );
267 return;
268
269 case 'pledge_status_id':
270 if (is_array($value)) {
271 foreach ($value as $k => $v) {
272 if ($v) {
273 $val[$k] = $k;
274 }
275 }
276
277 $status = implode(',', $val);
278
dbc6f6d6 279 if (count($val) > 0) {
6a488035
TO
280 $op = 'IN';
281 $status = "({$status})";
282 }
283 }
284 else {
6a488035
TO
285 $status = $value;
286 }
287
288 $statusValues = CRM_Core_OptionGroup::values('contribution_status');
289
290 $names = array();
291 if (isset($val) && is_array($val)) {
292 foreach ($val as $id => $dontCare) {
293 $names[] = $statusValues[$id];
294 }
295 }
296 else {
dbc6f6d6 297 if (!empty($value) ) {
298 $names[] = $statusValues[$value];
299 }
6a488035
TO
300 }
301
302 $query->_qill[$grouping][] = ts('Pledge Status %1', array(1 => $op)) . ' ' . implode(' ' . ts('or') . ' ', $names);
303 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause('civicrm_pledge.status_id',
304 $op,
305 $status,
306 'Integer'
307 );
308 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
309 return;
310
311 case 'pledge_payment_status_id':
312 if (is_array($value)) {
313 foreach ($value as $k => $v) {
314 if ($v) {
315 $val[$k] = $k;
316 }
317 }
318
319 $status = implode(',', $val);
320
321 if (count($val) > 1) {
322 $op = 'IN';
323 $status = "({$status})";
324 }
325 }
326 else {
6a488035
TO
327 $status = $value;
328 }
329
330 $statusValues = CRM_Core_OptionGroup::values('contribution_status');
331
332 $names = array();
333 if (is_array($val)) {
334 foreach ($val as $id => $dontCare) {
335 $names[] = $statusValues[$id];
336 }
337 }
338 else {
dbc6f6d6 339 if (!empty($value) ) {
340 $names[] = $statusValues[$value];
341 }
6a488035
TO
342 }
343
344 $query->_qill[$grouping][] = ts('Pledge Payment Status %1', array(1 => $op)) . ' ' . implode(' ' . ts('or') . ' ', $names);
345 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause('civicrm_pledge_payment.status_id',
346 $op,
347 $status,
348 'Integer'
349 );
350 $query->_tables['civicrm_pledge_payment'] = $query->_whereTables['civicrm_pledge_payment'] = 1;
351 return;
352
353 case 'pledge_test':
354 case 'pledge_is_test':
28c666be
CW
355 // We dont want to include all tests for sql OR CRM-7827
356 if (!$value || $query->getOperator() != 'OR') {
357 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause('civicrm_pledge.is_test',
358 $op,
359 $value,
360 'Boolean'
361 );
362 if ($value) {
363 $query->_qill[$grouping][] = ts('Pledge is a Test');
364 }
365 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
6a488035 366 }
6a488035
TO
367 return;
368
369 case 'pledge_financial_type_id':
370 $type = CRM_Contribute_PseudoConstant::financialType($value);
371 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause('civicrm_pledge.financial_type_id',
372 $op,
373 $value,
374 'Integer'
375 );
376 $query->_qill[$grouping][] = ts( 'Financial Type - %1', array( 1 => $type ) );
377 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
378 return;
379
380 case 'pledge_contribution_page_id':
381 $page = CRM_Contribute_PseudoConstant::contributionPage($value);
382 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause('civicrm_pledge.contribution_page_id',
383 $op,
384 $value,
385 'Integer'
386 );
387 $query->_qill[$grouping][] = ts('Financial Page - %1', array(1 => $page));
388 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
389 return;
390
6a488035 391 case 'pledge_id':
59de5a50
EM
392 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_pledge.id",
393 $op,
394 $value,
395 "Integer"
396 );
6a488035
TO
397 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
398 return;
399
400 case 'pledge_frequency_interval':
401 $query->_where[$grouping][] = "civicrm_pledge.frequency_interval $op $value";
402 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
403 return;
404
405 case 'pledge_frequency_unit':
406 $query->_where[$grouping][] = "civicrm_pledge.frequency_unit $op $value";
407 $query->_tables['civicrm_pledge'] = $query->_whereTables['civicrm_pledge'] = 1;
408 return;
409
410 case 'pledge_campaign_id':
411 $campParams = array(
412 'op' => $op,
413 'campaign' => $value,
414 'grouping' => $grouping,
415 'tableName' => 'civicrm_pledge',
416 );
417 CRM_Campaign_BAO_Query::componentSearchClause($campParams, $query);
418 return;
419 }
420 }
421
ffd93213 422 /**
100fef9d 423 * @param string $name
ffd93213
EM
424 * @param $mode
425 * @param $side
426 *
427 * @return null|string
428 */
00be9182 429 public static function from($name, $mode, $side) {
6a488035
TO
430 $from = NULL;
431
432 switch ($name) {
433 case 'civicrm_pledge':
434 $from = " $side JOIN civicrm_pledge ON civicrm_pledge.contact_id = contact_a.id ";
435 break;
436
437 case 'pledge_status':
438 $from .= " $side JOIN civicrm_option_group option_group_pledge_status ON (option_group_pledge_status.name = 'contribution_status')";
439 $from .= " $side JOIN civicrm_option_value pledge_status ON (civicrm_pledge.status_id = pledge_status.value AND option_group_pledge_status.id = pledge_status.option_group_id ) ";
440 break;
441
442 case 'pledge_financial_type':
443 $from .= " $side JOIN civicrm_financial_type ON civicrm_pledge.financial_type_id = civicrm_financial_type.id ";
444 break;
445
6a488035
TO
446 case 'civicrm_pledge_payment':
447 $from .= " $side JOIN civicrm_pledge_payment ON civicrm_pledge_payment.pledge_id = civicrm_pledge.id ";
448 break;
449
450 case 'payment_contribution':
451 $from .= " $side JOIN civicrm_contribution payment_contribution ON civicrm_pledge_payment.contribution_id = payment_contribution.id ";
452 break;
453
454 case 'payment_status':
455 $from .= " $side JOIN civicrm_option_group option_group_payment_status ON (option_group_payment_status.name = 'contribution_status')";
456 $from .= " $side JOIN civicrm_option_value payment_status ON (civicrm_pledge_payment.status_id = payment_status.value AND option_group_payment_status.id = payment_status.option_group_id ) ";
457 break;
458 }
459
460 return $from;
461 }
462
463 /**
100fef9d 464 * Getter for the qill object
6a488035
TO
465 *
466 * @return string
6a488035 467 */
00be9182 468 public function qill() {
6a488035
TO
469 return (isset($this->_qill)) ? $this->_qill : "";
470 }
471
472 /**
473 * Ideally this function should include fields that are displayed in the selector
474 */
475 static function defaultReturnProperties($mode,
476 $includeCustomFields = TRUE
477 ) {
478 $properties = NULL;
479
480 if ($mode & CRM_Contact_BAO_Query::MODE_PLEDGE) {
481 $properties = array(
482 'contact_type' => 1,
483 'contact_sub_type' => 1,
484 'sort_name' => 1,
485 'display_name' => 1,
486 'pledge_id' => 1,
487 'pledge_amount' => 1,
488 'pledge_total_paid' => 1,
489 'pledge_create_date' => 1,
490 'pledge_next_pay_date' => 1,
491 'pledge_next_pay_amount' => 1,
492 'pledge_status' => 1,
493 'pledge_status_id' => 1,
494 'pledge_is_test' => 1,
495 'pledge_contribution_page_id' => 1,
496 'pledge_financial_type' => 1,
497 'pledge_frequency_interval' => 1,
498 'pledge_frequency_unit' => 1,
499 'pledge_currency' => 1,
500 'pledge_campaign_id' => 1,
501 );
502 }
503 return $properties;
504 }
505
506 /**
507 * This includes any extra fields that might need for export etc
508 */
00be9182 509 public static function extraReturnProperties($mode) {
6a488035
TO
510 $properties = NULL;
511
512 if ($mode & CRM_Contact_BAO_Query::MODE_PLEDGE) {
513 $properties = array(
514 'pledge_balance_amount' => 1,
515 'pledge_payment_id' => 1,
516 'pledge_payment_scheduled_amount' => 1,
517 'pledge_payment_scheduled_date' => 1,
518 'pledge_payment_paid_amount' => 1,
519 'pledge_payment_paid_date' => 1,
520 'pledge_payment_reminder_date' => 1,
521 'pledge_payment_reminder_count' => 1,
522 'pledge_payment_status_id' => 1,
523 'pledge_payment_status' => 1,
524 );
525
526 // also get all the custom pledge properties
527 $fields = CRM_Core_BAO_CustomField::getFieldsForImport('Pledge');
528 if (!empty($fields)) {
529 foreach ($fields as $name => $dontCare) {
530 $properties[$name] = 1;
531 }
532 }
533 }
534 return $properties;
535 }
536
ffd93213 537 /**
c490a46a 538 * @param CRM_Core_Form $form
ffd93213 539 */
00be9182 540 public static function buildSearchForm(&$form) {
6a488035 541 // pledge related dates
bc3f7f04 542 CRM_Core_Form_Date::buildDateRange($form, 'pledge_start_date', 1, '_low', '_high', ts('From'), FALSE);
543 CRM_Core_Form_Date::buildDateRange($form, 'pledge_end_date', 1, '_low', '_high', ts('From'), FALSE);
544 CRM_Core_Form_Date::buildDateRange($form, 'pledge_create_date', 1, '_low', '_high', ts('From'), FALSE);
6a488035
TO
545
546 // pledge payment related dates
bc3f7f04 547 CRM_Core_Form_Date::buildDateRange($form, 'pledge_payment_date', 1, '_low', '_high', ts('From'), FALSE);
6a488035 548
8a4f27dc 549 $form->addYesNo('pledge_test', ts('Pledge is a Test?'), TRUE);
6a488035
TO
550 $form->add('text', 'pledge_amount_low', ts('From'), array('size' => 8, 'maxlength' => 8));
551 $form->addRule('pledge_amount_low', ts('Please enter a valid money value (e.g. %1).', array(1 => CRM_Utils_Money::format('9.99', ' '))), 'money');
552
553 $form->add('text', 'pledge_amount_high', ts('To'), array('size' => 8, 'maxlength' => 8));
554 $form->addRule('pledge_amount_high', ts('Please enter a valid money value (e.g. %1).', array(1 => CRM_Utils_Money::format('99.99', ' '))), 'money');
555
556 $statusValues = CRM_Contribute_PseudoConstant::contributionStatus();
557
558 // Remove status values that are only used for recurring contributions for now (Failed and In Progress).
559 unset($statusValues['4']);
560
561 foreach ($statusValues as $key => $val) {
562 $status[] = $form->createElement('advcheckbox', $key, NULL, $val);
563 }
564
565 $form->addGroup($status, 'pledge_status_id', ts('Pledge Status'));
566
567 //unset in progress for payment
568 unset($statusValues['5']);
569
570 foreach ($statusValues as $key => $val) {
571 $paymentStatus[] = $form->createElement('advcheckbox', $key, NULL, $val);
572 }
573
574 $form->addGroup($paymentStatus, 'pledge_payment_status_id', ts('Pledge Payment Status'));
575
576 $form->add('select', 'pledge_financial_type_id',
577 ts( 'Financial Type' ),
ab345ca5
CW
578 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType(),
579 FALSE, array('class' => 'crm-select2')
6a488035
TO
580 );
581
582 $form->add('select', 'pledge_contribution_page_id',
583 ts('Contribution Page'),
ab345ca5
CW
584 array('' => ts('- any -')) + CRM_Contribute_PseudoConstant::contributionPage(),
585 FALSE, array('class' => 'crm-select2')
6a488035
TO
586 );
587
6a488035
TO
588 //add fields for pledge frequency
589 $form->add('text', 'pledge_frequency_interval', ts('Every'), array('size' => 8, 'maxlength' => 8));
5a0739f2 590 $form->addRule('pledge_frequency_interval', ts('Please enter valid Pledge Frequency Interval'), 'integer');
6a488035
TO
591 $frequencies = CRM_Core_OptionGroup::values('recur_frequency_units');
592 foreach ($frequencies as $val => $label) {
593 $freqUnitsDisplay["'{$val}'"] = ts('%1(s)', array(1 => $label));
594 }
595
596 $form->add('select', 'pledge_frequency_unit',
597 ts('Pledge Frequency'),
ab345ca5 598 array('' => ts('- any -')) + $freqUnitsDisplay
6a488035
TO
599 );
600
601 // add all the custom searchable fields
602 $pledge = array('Pledge');
603 $groupDetails = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, TRUE, $pledge);
604 if ($groupDetails) {
605 $form->assign('pledgeGroupTree', $groupDetails);
606 foreach ($groupDetails as $group) {
607 foreach ($group['fields'] as $field) {
608 $fieldId = $field['id'];
609 $elementName = 'custom_' . $fieldId;
610 CRM_Core_BAO_CustomField::addQuickFormElement($form,
611 $elementName,
612 $fieldId,
613 FALSE, FALSE, TRUE
614 );
615 }
616 }
617 }
618
619 CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($form, 'pledge_campaign_id');
620
621 $form->assign('validCiviPledge', TRUE);
622 $form->setDefaults(array('pledge_test' => 0));
623 }
624
ffd93213
EM
625 /**
626 * @param $row
100fef9d 627 * @param int $id
ffd93213 628 */
00be9182 629 public static function searchAction(&$row, $id) {}
6a488035 630
ffd93213
EM
631 /**
632 * @param $tables
633 */
00be9182 634 public static function tableNames(&$tables) {
6a488035 635 //add status table
8cc574cf 636 if (!empty($tables['pledge_status']) || !empty($tables['civicrm_pledge_payment'])) {
6a488035
TO
637 $tables = array_merge(array('civicrm_pledge' => 1), $tables);
638 }
639 }
640}