CRM-17069 fix for master
[civicrm-core.git] / CRM / Event / BAO / Query.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Event_BAO_Query {
36
0cf587a7
EM
37 /**
38 * @return array
39 */
00be9182 40 public static function &getFields() {
6a488035
TO
41 $fields = array();
42 $fields = array_merge($fields, CRM_Event_DAO_Event::import());
43 $fields = array_merge($fields, self::getParticipantFields());
44 $fields = array_merge($fields, CRM_Core_DAO_Discount::export());
45
46 return $fields;
47 }
48
0cf587a7
EM
49 /**
50 * @return array
51 */
00be9182 52 public static function &getParticipantFields() {
6a488035
TO
53 $fields = CRM_Event_BAO_Participant::importableFields('Individual', TRUE, TRUE);
54 return $fields;
55 }
56
57 /**
66f9e52b 58 * Build select for CiviEvent.
6a488035 59 *
77b97be7
EM
60 * @param $query
61 *
6a488035 62 * @return void
6a488035 63 */
00be9182 64 public static function select(&$query) {
6a488035
TO
65 if (($query->_mode & CRM_Contact_BAO_Query::MODE_EVENT) ||
66 CRM_Contact_BAO_Query::componentPresent($query->_returnProperties, 'participant_')
67 ) {
68 $query->_select['participant_id'] = "civicrm_participant.id as participant_id";
69 $query->_element['participant_id'] = 1;
70 $query->_tables['civicrm_participant'] = $query->_whereTables['civicrm_participant'] = 1;
71
72 //add fee level
a7488080 73 if (!empty($query->_returnProperties['participant_fee_level'])) {
6a488035
TO
74 $query->_select['participant_fee_level'] = "civicrm_participant.fee_level as participant_fee_level";
75 $query->_element['participant_fee_level'] = 1;
76 }
77
e51b7372 78 //add participant contact ID
79 if (!empty($query->_returnProperties['participant_contact_id'])) {
80 $query->_select['participant_contact_id'] = "civicrm_participant.contact_id as participant_contact_id";
81 $query->_element['participant_contact_id'] = 1;
82 }
83
6a488035 84 //add fee amount
a7488080 85 if (!empty($query->_returnProperties['participant_fee_amount'])) {
6a488035
TO
86 $query->_select['participant_fee_amount'] = "civicrm_participant.fee_amount as participant_fee_amount";
87 $query->_element['participant_fee_amount'] = 1;
88 }
89
90 //add fee currency
a7488080 91 if (!empty($query->_returnProperties['participant_fee_currency'])) {
6a488035
TO
92 $query->_select['participant_fee_currency'] = "civicrm_participant.fee_currency as participant_fee_currency";
93 $query->_element['participant_fee_currency'] = 1;
94 }
95
96 //add event title also if event id is select
8cc574cf 97 if (!empty($query->_returnProperties['event_id']) || !empty($query->_returnProperties['event_title'])) {
6a488035
TO
98 $query->_select['event_id'] = "civicrm_event.id as event_id";
99 $query->_select['event_title'] = "civicrm_event.title as event_title";
100 $query->_element['event_id'] = 1;
101 $query->_element['event_title'] = 1;
102 $query->_tables['civicrm_event'] = 1;
103 $query->_whereTables['civicrm_event'] = 1;
104 }
105
106 //add start date / end date
a7488080 107 if (!empty($query->_returnProperties['event_start_date'])) {
6a488035
TO
108 $query->_select['event_start_date'] = "civicrm_event.start_date as event_start_date";
109 $query->_element['event_start_date'] = 1;
110 }
111
a7488080 112 if (!empty($query->_returnProperties['event_end_date'])) {
6a488035
TO
113 $query->_select['event_end_date'] = "civicrm_event.end_date as event_end_date";
114 $query->_element['event_end_date'] = 1;
115 }
116
117 //event type
a7488080 118 if (!empty($query->_returnProperties['event_type'])) {
6a488035
TO
119 $query->_select['event_type'] = "event_type.label as event_type";
120 $query->_element['event_type'] = 1;
121 $query->_tables['event_type'] = 1;
122 $query->_whereTables['event_type'] = 1;
123 }
124
a7488080 125 if (!empty($query->_returnProperties['event_type_id'])) {
6a488035
TO
126 $query->_select['event_type_id'] = "event_type.id as event_type_id";
127 $query->_element['event_type_id'] = 1;
128 $query->_tables['event_type'] = 1;
129 $query->_whereTables['event_type'] = 1;
130 }
131
132 //add status and status_id
8cc574cf 133 if (!empty($query->_returnProperties['participant_status']) || !empty($query->_returnProperties['participant_status_id'])) {
6a488035
TO
134 $query->_select['participant_status'] = "participant_status.label as participant_status";
135 $query->_select['participant_status_id'] = "participant_status.id as participant_status_id";
136 $query->_element['participant_status_id'] = 1;
137 $query->_element['participant_status'] = 1;
138 $query->_tables['civicrm_participant'] = 1;
139 $query->_tables['participant_status'] = 1;
140 $query->_whereTables['civicrm_participant'] = 1;
141 $query->_whereTables['participant_status'] = 1;
e51b7372 142 $query->_pseudoConstantsSelect['participant_status'] = array(
143 'pseudoField' => 'participant_status',
144 'idCol' => 'participant_status_id',
145 );
6a488035
TO
146 }
147
62fd7fe8
LS
148 //add participant_role and participant_role_id
149 if (!empty($query->_returnProperties['participant_role']) || !empty($query->_returnProperties['participant_role_id'])) {
6a488035 150 $query->_select['participant_role'] = "participant_role.label as participant_role";
6a488035 151 $query->_select['participant_role_id'] = "civicrm_participant.role_id as participant_role_id";
62fd7fe8 152 $query->_element['participant_role'] = 1;
6a488035
TO
153 $query->_element['participant_role_id'] = 1;
154 $query->_tables['civicrm_participant'] = 1;
155 $query->_tables['participant_role'] = 1;
156 $query->_whereTables['civicrm_participant'] = 1;
157 $query->_whereTables['participant_role'] = 1;
62fd7fe8
LS
158 $query->_pseudoConstantsSelect['participant_role'] = array(
159 'pseudoField' => 'participant_role',
160 'idCol' => 'participant_role_id',
161 );
6a488035
TO
162 }
163
164 //add register date
a7488080 165 if (!empty($query->_returnProperties['participant_register_date'])) {
6a488035
TO
166 $query->_select['participant_register_date'] = "civicrm_participant.register_date as participant_register_date";
167 $query->_element['participant_register_date'] = 1;
168 }
169
170 //add source
a7488080 171 if (!empty($query->_returnProperties['participant_source'])) {
6a488035
TO
172 $query->_select['participant_source'] = "civicrm_participant.source as participant_source";
173 $query->_element['participant_source'] = 1;
174 $query->_tables['civicrm_participant'] = $query->_whereTables['civicrm_participant'] = 1;
175 }
176
177 //participant note
a7488080 178 if (!empty($query->_returnProperties['participant_note'])) {
6a488035
TO
179 $query->_select['participant_note'] = "civicrm_note.note as participant_note";
180 $query->_element['participant_note'] = 1;
181 $query->_tables['participant_note'] = 1;
182 $query->_whereTables['civicrm_note'] = 1;
183 }
184
a7488080 185 if (!empty($query->_returnProperties['participant_is_pay_later'])) {
6a488035
TO
186 $query->_select['participant_is_pay_later'] = "civicrm_participant.is_pay_later as participant_is_pay_later";
187 $query->_element['participant_is_pay_later'] = 1;
188 }
189
a7488080 190 if (!empty($query->_returnProperties['participant_is_test'])) {
6a488035
TO
191 $query->_select['participant_is_test'] = "civicrm_participant.is_test as participant_is_test";
192 $query->_element['participant_is_test'] = 1;
193 }
194
a7488080 195 if (!empty($query->_returnProperties['participant_registered_by_id'])) {
6a488035
TO
196 $query->_select['participant_registered_by_id'] = "civicrm_participant.registered_by_id as participant_registered_by_id";
197 $query->_element['participant_registered_by_id'] = 1;
198 }
199
200 // get discount name
a7488080 201 if (!empty($query->_returnProperties['participant_discount_name'])) {
6a488035
TO
202 $query->_select['participant_discount_name'] = "discount_name.title as participant_discount_name";
203 $query->_element['participant_discount_name'] = 1;
204 $query->_tables['civicrm_discount'] = 1;
205 $query->_tables['participant_discount_name'] = 1;
206 $query->_whereTables['civicrm_discount'] = 1;
207 $query->_whereTables['participant_discount_name'] = 1;
208 }
209
210 //carry campaign id to selectors.
a7488080 211 if (!empty($query->_returnProperties['participant_campaign_id'])) {
6a488035
TO
212 $query->_select['participant_campaign_id'] = 'civicrm_participant.campaign_id as participant_campaign_id';
213 $query->_element['participant_campaign_id'] = 1;
214 }
215 }
216 }
d75f2f47 217
6a488035 218
0cf587a7
EM
219 /**
220 * @param $query
221 */
00be9182 222 public static function where(&$query) {
28c666be 223 $grouping = NULL;
6a488035 224 foreach (array_keys($query->_params) as $id) {
a7488080 225 if (empty($query->_params[$id][0])) {
6a488035
TO
226 continue;
227 }
228 if (substr($query->_params[$id][0], 0, 6) == 'event_' ||
229 substr($query->_params[$id][0], 0, 12) == 'participant_'
230 ) {
231 if ($query->_mode == CRM_Contact_BAO_QUERY::MODE_CONTACTS) {
232 $query->_useDistinct = TRUE;
233 }
6a488035
TO
234 $grouping = $query->_params[$id][3];
235 self::whereClauseSingle($query->_params[$id], $query);
236 }
237 }
6a488035
TO
238 }
239
0cf587a7
EM
240 /**
241 * @param $values
242 * @param $query
243 */
00be9182 244 public static function whereClauseSingle(&$values, &$query) {
6a488035 245 list($name, $op, $value, $grouping, $wildcard) = $values;
3d6fe441 246 $fields = array_merge(CRM_Event_BAO_Event::fields(), CRM_Event_BAO_Participant::exportableFields());
e51b7372 247
6a488035
TO
248 switch ($name) {
249 case 'event_start_date_low':
250 case 'event_start_date_high':
251 $query->dateQueryBuilder($values,
252 'civicrm_event', 'event_start_date', 'start_date', 'Start Date'
253 );
254 return;
255
256 case 'event_end_date_low':
257 case 'event_end_date_high':
258 $query->dateQueryBuilder($values,
259 'civicrm_event', 'event_end_date', 'end_date', 'End Date'
260 );
261 return;
d75f2f47 262
62933949 263 case 'event_include_repeating_events':
264 /**
265 * Include Repeating Events
266 */
267 //Get parent of this event
268 $exEventId = '';
a50a97b8 269 if ($query->_where[$grouping]) {
22e263ad 270 foreach ($query->_where[$grouping] as $key => $val) {
62933949 271 if (strstr($val, 'civicrm_event.id =')) {
272 $exEventId = $val;
273 $extractEventId = explode(" ", $val);
274 $value = $extractEventId[2];
275 unset($query->_where[$grouping][$key]);
276 }
277 }
278 $extractEventId = explode(" ", $exEventId);
279 $value = $extractEventId[2];
280 unset($query->_where[$grouping][$key]);
281 }
282 $thisEventHasParent = CRM_Core_BAO_RecurringEntity::getParentFor($value, 'civicrm_event');
a50a97b8 283 if ($thisEventHasParent) {
a99e6f73 284 $getAllConnections = CRM_Core_BAO_RecurringEntity::getEntitiesForParent($thisEventHasParent, 'civicrm_event');
285 $allEventIds = array();
22e263ad 286 foreach ($getAllConnections as $key => $val) {
a99e6f73 287 $allEventIds[] = $val['id'];
288 }
a50a97b8 289 if (!empty($allEventIds)) {
62933949 290 $op = "IN";
92fcb95f 291 $value = "(" . implode(",", $allEventIds) . ")";
62933949 292 }
293 }
294 $query->_where[$grouping][] = "civicrm_event.id $op {$value}";
d8f8b40f 295 $query->_qill[$grouping][] = ts('Include Repeating Events');
62933949 296 $query->_tables['civicrm_event'] = $query->_whereTables['civicrm_event'] = 1;
297 return;
d75f2f47 298
3a6eb174 299 case 'participant_is_test':
300 $key = array_search('civicrm_participant.is_test = 0', $query->_where[$grouping]);
301 if (!empty($key)) {
302 unset($query->_where[$grouping][$key]);
303 }
6a488035 304 case 'participant_test':
28c666be
CW
305 // We dont want to include all tests for sql OR CRM-7827
306 if (!$value || $query->getOperator() != 'OR') {
307 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_participant.is_test",
308 $op,
309 $value,
310 "Boolean"
311 );
312 if ($value) {
313 $query->_qill[$grouping][] = ts("Participant is a Test");
314 }
315 $query->_tables['civicrm_participant'] = $query->_whereTables['civicrm_participant'] = 1;
6a488035 316 }
6a488035
TO
317 return;
318
319 case 'participant_fee_id':
9da8dc8c 320 $feeLabel = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $value, 'label');
6a488035
TO
321 $feeLabel = CRM_Core_DAO::escapeString(trim($feeLabel));
322 if ($value) {
81d86b63 323 $query->_where[$grouping][] = "civicrm_participant.fee_level LIKE '%$feeLabel%'";
324 $query->_qill[$grouping][] = ts("Fee level") . " contains $feeLabel";
6a488035
TO
325 }
326 $query->_tables['civicrm_participant'] = $query->_whereTables['civicrm_participant'] = 1;
327 return;
328
6a488035
TO
329 case 'participant_fee_amount_high':
330 case 'participant_fee_amount_low':
331 $query->numberRangeBuilder($values,
332 'civicrm_participant', 'participant_fee_amount', 'fee_amount', 'Fee Amount'
333 );
334 return;
335
6a488035 336 case 'participant_status_id':
6a488035 337 case 'participant_role_id':
f6d1d432 338 if ($value && is_array($value) && strpos($op, 'IN') === FALSE) {
884fdc63 339 $op = 'IN';
340 }
341 case 'participant_status':
342 case 'participant_role':
e51b7372 343 case 'participant_source':
344 case 'participant_id':
345 case 'participant_contact_id':
3a6eb174 346 case 'participant_is_pay_later':
e51b7372 347 case 'participant_fee_amount':
348 case 'participant_fee_level':
6f56dc34 349 case 'participant_campaign_id':
350
e51b7372 351 $qillName = $name;
07d76dca 352 if (in_array($name, array(
353 'participant_status_id',
354 'participant_role_id',
355 'participant_source',
356 'participant_id',
357 'participant_contact_id',
358 'participant_fee_amount',
359 'participant_fee_level',
360 'participant_is_pay_later',
6f56dc34 361 'participant_campaign_id',
07d76dca 362 ))) {
e51b7372 363 $name = str_replace('participant_', '', $name);
3a6eb174 364 if ($name == 'is_pay_later') {
365 $qillName = $name;
366 }
53133bb0 367 if ($name == 'role_id') {
368 $qillName = 'participant_role';
07d76dca 369 $query->_where[$grouping][] = " civicrm_participant.$name REGEXP '[[:<:]]" . implode('[[:>:]]|[[:<:]]', (array) $value) . "[[:>:]]' ";
3a6eb174 370 }
6a488035
TO
371 }
372
e51b7372 373 $dataType = !empty($fields[$qillName]['type']) ? CRM_Utils_Type::typeToString($fields[$qillName]['type']) : 'String';
6a488035 374
e51b7372 375 if (in_array($name, array('participant_status', 'participant_role'))) {
376 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("$name.label", $op, $value, $dataType);
6a488035 377 }
07d76dca 378 elseif ($name != 'role_id') {
e51b7372 379 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_participant.$name", $op, $value, $dataType);
6a488035 380 }
e51b7372 381 list($op, $value) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Event_DAO_Participant', $name, $value, $op);
382 $query->_qill[$grouping][] = ts('%1 %2 %3', array(1 => $fields[$qillName]['title'], 2 => $op, 3 => $value));
6a488035
TO
383 $query->_tables['civicrm_participant'] = $query->_whereTables['civicrm_participant'] = 1;
384 return;
385
386 case 'participant_register_date':
387 $query->dateQueryBuilder($values,
388 'civicrm_participant', 'participant_register_date', 'register_date', 'Register Date'
389 );
390 return;
391
6a488035 392 case 'event_id':
3a6eb174 393 case 'participant_event_id':
394 $name = str_replace('participant_', '', $name);
e51b7372 395 case 'event_is_public':
396 case 'event_type_id':
22bb0e9d 397 case 'event_title':
e51b7372 398 $qillName = $name;
bed98343 399 if (in_array($name, array(
400 'event_id',
22bb0e9d 401 'event_title',
bed98343 402 'event_is_public',
403 )
404 )) {
e51b7372 405 $name = str_replace('event_', '', $name);
406 }
407 $dataType = !empty($fields[$qillName]['type']) ? CRM_Utils_Type::typeToString($fields[$qillName]['type']) : 'String';
6a488035 408
e51b7372 409 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_event.$name", $op, $value, $dataType);
6a488035 410 $query->_tables['civicrm_event'] = $query->_whereTables['civicrm_event'] = 1;
e51b7372 411 if (!array_key_exists($qillName, $fields)) {
412 break;
413 }
414 list($op, $value) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Event_DAO_Event', $name, $value, $op);
415 $query->_qill[$grouping][] = ts('%1 %2 %3', array(1 => $fields[$qillName]['title'], 2 => $op, 3 => $value));
6a488035 416 return;
6a488035
TO
417 }
418 }
419
0cf587a7 420 /**
100fef9d 421 * @param string $name
0cf587a7
EM
422 * @param $mode
423 * @param $side
424 *
425 * @return null|string
426 */
00be9182 427 public static function from($name, $mode, $side) {
6a488035
TO
428 $from = NULL;
429 switch ($name) {
430 case 'civicrm_participant':
431 $from = " LEFT JOIN civicrm_participant ON civicrm_participant.contact_id = contact_a.id ";
432 break;
433
434 case 'civicrm_event':
435 $from = " INNER JOIN civicrm_event ON civicrm_participant.event_id = civicrm_event.id ";
436 break;
437
438 case 'event_type':
439 $from = " $side JOIN civicrm_option_group option_group_event_type ON (option_group_event_type.name = 'event_type')";
440 $from .= " $side JOIN civicrm_option_value event_type ON (civicrm_event.event_type_id = event_type.value AND option_group_event_type.id = event_type.option_group_id ) ";
441 break;
442
443 case 'participant_note':
444 $from .= " $side JOIN civicrm_note ON ( civicrm_note.entity_table = 'civicrm_participant' AND
445 civicrm_participant.id = civicrm_note.entity_id )";
446 break;
447
448 case 'participant_status':
449 $from .= " $side JOIN civicrm_participant_status_type participant_status ON (civicrm_participant.status_id = participant_status.id) ";
450 break;
451
452 case 'participant_role':
453 $from = " $side JOIN civicrm_option_group option_group_participant_role ON (option_group_participant_role.name = 'participant_role')";
454 $from .= " $side JOIN civicrm_option_value participant_role ON (civicrm_participant.role_id = participant_role.value
455 AND option_group_participant_role.id = participant_role.option_group_id ) ";
456 break;
457
458 case 'participant_discount_name':
459 $from = " $side JOIN civicrm_discount discount ON ( civicrm_participant.discount_id = discount.id )";
460 $from .= " $side JOIN civicrm_option_group discount_name ON ( discount_name.id = discount.price_set_id ) ";
461 break;
462 }
463 return $from;
464 }
465
466 /**
66f9e52b 467 * Getter for the qill object.
6a488035
TO
468 *
469 * @return string
6a488035 470 */
00be9182 471 public function qill() {
6a488035
TO
472 return (isset($this->_qill)) ? $this->_qill : "";
473 }
474
0cf587a7
EM
475 /**
476 * @param $mode
477 * @param bool $includeCustomFields
478 *
479 * @return array|null
480 */
bed98343 481 public static function defaultReturnProperties(
ddca8f33 482 $mode,
6a488035
TO
483 $includeCustomFields = TRUE
484 ) {
485 $properties = NULL;
486 if ($mode & CRM_Contact_BAO_Query::MODE_EVENT) {
487 $properties = array(
488 'contact_type' => 1,
489 'contact_sub_type' => 1,
490 'sort_name' => 1,
491 'display_name' => 1,
492 'event_id' => 1,
493 'event_title' => 1,
494 'event_start_date' => 1,
495 'event_end_date' => 1,
496 'event_type' => 1,
497 'participant_id' => 1,
498 'participant_status' => 1,
499 'participant_role_id' => 1,
500 'participant_note' => 1,
501 'participant_register_date' => 1,
502 'participant_source' => 1,
503 'participant_fee_level' => 1,
504 'participant_is_test' => 1,
505 'participant_is_pay_later' => 1,
506 'participant_fee_amount' => 1,
507 'participant_discount_name' => 1,
508 'participant_fee_currency' => 1,
509 'participant_registered_by_id' => 1,
510 'participant_campaign_id' => 1,
511 );
512
513 if ($includeCustomFields) {
514 // also get all the custom participant properties
515 $fields = CRM_Core_BAO_CustomField::getFieldsForImport('Participant');
516 if (!empty($fields)) {
517 foreach ($fields as $name => $dontCare) {
518 $properties[$name] = 1;
519 }
520 }
521 }
522 }
523
524 return $properties;
525 }
526
6aac2db8
CW
527 /**
528 * @param CRM_Core_Form $form
529 */
00be9182 530 public static function buildSearchForm(&$form) {
6a488035
TO
531 $dataURLEventFee = CRM_Utils_System::url('civicrm/ajax/eventFee',
532 "reset=1",
533 FALSE, NULL, FALSE
534 );
535
6a488035
TO
536 $form->assign('dataURLEventFee', $dataURLEventFee);
537
27d7d241 538 $form->addEntityRef('event_id', ts('Event Name'), array(
9c7c6a00
CW
539 'entity' => 'event',
540 'placeholder' => ts('- any -'),
541 'select' => array('minimumInputLength' => 0),
542 )
543 );
27d7d241 544 $form->addEntityRef('event_type_id', ts('Event Type'), array(
6aac2db8
CW
545 'entity' => 'option_value',
546 'placeholder' => ts('- any -'),
547 'select' => array('minimumInputLength' => 0),
548 'api' => array(
549 'params' => array('option_group_id' => 'event_type'),
550 ),
551 )
552 );
93793e86 553 $form->add('text', 'participant_fee_id', ts('Fee Level'), array('class' => 'big crm-ajax-select'));
6a488035 554
bc3f7f04 555 CRM_Core_Form_Date::buildDateRange($form, 'event', 1, '_start_date_low', '_end_date_high', ts('From'), FALSE);
27d7d241
CW
556
557 $form->addElement('checkbox', "event_include_repeating_events", NULL, ts('Include participants from all events in the %1 series', array(1 => '<em>%1</em>')));
6a488035 558
e51b7372 559 $form->addSelect('participant_status_id',
560 array('entity' => 'participant', 'label' => ts('Participant Status'), 'multiple' => 'multiple', 'option_url' => NULL, 'placeholder' => ts('- any -'))
561 );
6a488035 562
e51b7372 563 $form->addSelect('participant_role_id',
564 array('entity' => 'participant', 'label' => ts('Participant Role'), 'multiple' => 'multiple', 'option_url' => NULL, 'placeholder' => ts('- any -'))
565 );
6a488035 566
8a4f27dc 567 $form->addYesNo('participant_test', ts('Participant is a Test?'), TRUE);
3a6eb174 568 $form->addYesNo('participant_is_pay_later', ts('Participant is Pay Later?'), TRUE);
6a488035
TO
569 $form->addElement('text', 'participant_fee_amount_low', ts('From'), array('size' => 8, 'maxlength' => 8));
570 $form->addElement('text', 'participant_fee_amount_high', ts('To'), array('size' => 8, 'maxlength' => 8));
571
572 $form->addRule('participant_fee_amount_low', ts('Please enter a valid money value.'), 'money');
573 $form->addRule('participant_fee_amount_high', ts('Please enter a valid money value.'), 'money');
574 // add all the custom searchable fields
dcf0d348 575 $extends = array('Participant', 'Event');
6a488035
TO
576 $groupDetails = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, TRUE, $extends);
577 if ($groupDetails) {
578 $form->assign('participantGroupTree', $groupDetails);
579 foreach ($groupDetails as $group) {
580 foreach ($group['fields'] as $field) {
581 $fieldId = $field['id'];
582 $elementName = 'custom_' . $fieldId;
583 CRM_Core_BAO_CustomField::addQuickFormElement($form,
584 $elementName,
585 $fieldId,
586 FALSE, FALSE, TRUE
587 );
588 }
589 }
590 }
591
592 CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($form, 'participant_campaign_id');
d75f2f47 593
6a488035
TO
594 $form->assign('validCiviEvent', TRUE);
595 $form->setDefaults(array('participant_test' => 0));
596 }
597
0cf587a7
EM
598 /**
599 * @param $row
100fef9d 600 * @param int $id
0cf587a7 601 */
0479b4c8
TO
602 public static function searchAction(&$row, $id) {
603 }
6a488035 604
0cf587a7
EM
605 /**
606 * @param $tables
607 */
00be9182 608 public static function tableNames(&$tables) {
6a488035 609 //add participant table
a7488080 610 if (!empty($tables['civicrm_event'])) {
6a488035
TO
611 $tables = array_merge(array('civicrm_participant' => 1), $tables);
612 }
613 }
96025800 614
6a488035 615}