CRM-21813 : Parameter list mismatch (#11734)
[civicrm-core.git] / CRM / Event / BAO / Event.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33class CRM_Event_BAO_Event extends CRM_Event_DAO_Event {
34
35 /**
66f9e52b 36 * Class constructor.
6a488035 37 */
00be9182 38 public function __construct() {
6a488035
TO
39 parent::__construct();
40 }
41
42 /**
66f9e52b 43 * Fetch object based on array of properties.
6a488035 44 *
d4dd1e85
TO
45 * @param array $params
46 * (reference ) an assoc array of name/value pairs.
47 * @param array $defaults
48 * (reference ) an assoc array to hold the flattened values.
6a488035 49 *
3d469574 50 * @return CRM_Event_DAO_Event
6a488035 51 */
00be9182 52 public static function retrieve(&$params, &$defaults) {
6a488035
TO
53 $event = new CRM_Event_DAO_Event();
54 $event->copyValues($params);
55 if ($event->find(TRUE)) {
56 CRM_Core_DAO::storeValues($event, $defaults);
57 return $event;
58 }
59 return NULL;
60 }
61
62 /**
fe482240 63 * Update the is_active flag in the db.
6a488035 64 *
d4dd1e85
TO
65 * @param int $id
66 * Id of the database record.
67 * @param bool $is_active
68 * Value we want to set the is_active field.
6a488035 69 *
a6c01b45 70 * @return Object
b44e3f84 71 * DAO object on success, null otherwise
6a488035 72 */
00be9182 73 public static function setIsActive($id, $is_active) {
6a488035
TO
74 return CRM_Core_DAO::setFieldValue('CRM_Event_DAO_Event', $id, 'is_active', $is_active);
75 }
76
77 /**
66f9e52b 78 * Add the event.
6a488035 79 *
d4dd1e85
TO
80 * @param array $params
81 * Reference array contains the values submitted by the form.
6a488035 82 *
3d469574 83 * @return CRM_Event_DAO_Event
6a488035 84 */
00be9182 85 public static function add(&$params) {
6a488035 86 CRM_Utils_System::flushCache();
cc9b58f3 87 $financialTypeId = NULL;
a7488080 88 if (!empty($params['id'])) {
6a488035 89 CRM_Utils_Hook::pre('edit', 'Event', $params['id'], $params);
a7488080 90 if (empty($params['skipFinancialType'])) {
cc9b58f3
PN
91 $financialTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $params['id'], 'financial_type_id');
92 }
6a488035
TO
93 }
94 else {
95 CRM_Utils_Hook::pre('create', 'Event', NULL, $params);
96 }
97
98 $event = new CRM_Event_DAO_Event();
99
100 $event->copyValues($params);
101 $result = $event->save();
102
a7488080 103 if (!empty($params['id'])) {
6a488035
TO
104 CRM_Utils_Hook::post('edit', 'Event', $event->id, $event);
105 }
106 else {
107 CRM_Utils_Hook::post('create', 'Event', $event->id, $event);
108 }
8cc574cf 109 if ($financialTypeId && !empty($params['financial_type_id']) && $financialTypeId != $params['financial_type_id']) {
e1c77163 110 CRM_Price_BAO_PriceFieldValue::updateFinancialType($params['id'], 'civicrm_event', $params['financial_type_id']);
cc9b58f3 111 }
6a488035
TO
112 return $result;
113 }
114
115 /**
66f9e52b 116 * Create the event.
6a488035 117 *
d4dd1e85
TO
118 * @param array $params
119 * Reference array contains the values submitted by the form.
6a488035 120 *
9637d4be 121 * @return object
6a488035
TO
122 */
123 public static function create(&$params) {
124 $transaction = new CRM_Core_Transaction();
125 if (empty($params['is_template'])) {
126 $params['is_template'] = 0;
127 }
128 // check if new event, if so set the created_id (if not set)
129 // and always set created_date to now
130 if (empty($params['id'])) {
131 if (empty($params['created_id'])) {
132 $session = CRM_Core_Session::singleton();
133 $params['created_id'] = $session->get('userID');
134 }
135 $params['created_date'] = date('YmdHis');
136 }
137
138 $event = self::add($params);
b2cdd843 139 CRM_Price_BAO_PriceSet::setPriceSets($params, $event, 'event');
6a488035
TO
140 if (is_a($event, 'CRM_Core_Error')) {
141 CRM_Core_DAO::transaction('ROLLBACK');
142 return $event;
143 }
144
3bdcd4ec 145 $contactId = CRM_Core_Session::getLoggedInContactID();
6a488035
TO
146 if (!$contactId) {
147 $contactId = CRM_Utils_Array::value('contact_id', $params);
148 }
149
150 // Log the information on successful add/edit of Event
151 $logParams = array(
152 'entity_table' => 'civicrm_event',
153 'entity_id' => $event->id,
154 'modified_id' => $contactId,
155 'modified_date' => date('Ymd'),
156 );
157
158 CRM_Core_BAO_Log::add($logParams);
159
a7488080 160 if (!empty($params['custom']) &&
6a488035
TO
161 is_array($params['custom'])
162 ) {
163 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_event', $event->id);
164 }
165
166 $transaction->commit();
167
168 return $event;
169 }
170
171 /**
66f9e52b 172 * Delete the event.
6a488035 173 *
d4dd1e85
TO
174 * @param int $id
175 * Event id.
6a488035 176 *
77b97be7 177 * @return mixed|null
6a488035 178 */
00be9182 179 public static function del($id) {
6a488035
TO
180 if (!$id) {
181 return NULL;
182 }
183
184 CRM_Utils_Hook::pre('delete', 'Event', $id, CRM_Core_DAO::$_nullArray);
185
186 $extends = array('event');
187 $groupTree = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, NULL, $extends);
188 foreach ($groupTree as $values) {
52b54dda
J
189 $query = "DELETE FROM %1 WHERE entity_id = %2";
190 CRM_Core_DAO::executeQuery($query, array(
191 1 => array($values['table_name'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
192 2 => array($id, 'Integer'),
193 ));
6a488035
TO
194 }
195
52b54dda
J
196 // Clean up references to profiles used by the event (CRM-20935)
197 $ufJoinParams = array(
198 'module' => 'CiviEvent',
199 'entity_table' => 'civicrm_event',
200 'entity_id' => $id,
201 );
202 CRM_Core_BAO_UFJoin::deleteAll($ufJoinParams);
203 $ufJoinParams = array(
204 'module' => 'CiviEvent_Additional',
205 'entity_table' => 'civicrm_event',
206 'entity_id' => $id,
207 );
208 CRM_Core_BAO_UFJoin::deleteAll($ufJoinParams);
209
6a488035 210 // price set cleanup, CRM-5527
9da8dc8c 211 CRM_Price_BAO_PriceSet::removeFrom('civicrm_event', $id);
6a488035
TO
212
213 $event = new CRM_Event_DAO_Event();
214 $event->id = $id;
215
216 if ($event->find(TRUE)) {
217 $locBlockId = $event->loc_block_id;
218 $result = $event->delete();
219
220 if (!is_null($locBlockId)) {
221 self::deleteEventLocBlock($locBlockId, $id);
222 }
223
224 CRM_Utils_Hook::post('delete', 'Event', $id, $event);
225 return $result;
226 }
227
228 return NULL;
229 }
230
231 /**
3bdf1f3a 232 * Delete the location block associated with an event.
233 *
234 * Function checks that it is not being used by any other event.
6a488035 235 *
3bdf1f3a 236 * @param int $locBlockId
d4dd1e85
TO
237 * Location block id to be deleted.
238 * @param int $eventId
239 * Event with which loc block is associated.
6a488035 240 */
00be9182 241 public static function deleteEventLocBlock($locBlockId, $eventId = NULL) {
6a488035
TO
242 $query = "SELECT count(ce.id) FROM civicrm_event ce WHERE ce.loc_block_id = $locBlockId";
243
244 if ($eventId) {
245 $query .= " AND ce.id != $eventId;";
246 }
247
248 $locCount = CRM_Core_DAO::singleValueQuery($query);
249
250 if ($locCount == 0) {
251 CRM_Core_BAO_Location::deleteLocBlock($locBlockId);
252 }
253 }
254
255 /**
3bdf1f3a 256 * Get current/future Events.
6a488035 257 *
5a4f6742
CW
258 * @param int $all
259 * 0 returns current and future events.
c2be40dc
AH
260 * 1 if events all are required
261 * 2 returns events since 3 months ago
97c1cf60 262 * @param int|array $id single int event id or array of multiple event ids to return
5a4f6742
CW
263 * @param bool $isActive
264 * true if you need only active events.
265 * @param bool $checkPermission
266 * true if you need to check permission else false.
97c1cf60 267 * @param bool $titleOnly
268 * true if you need only title not appended with start date
6a488035 269 *
77b97be7 270 * @return array
6a488035 271 */
5396af74 272 public static function getEvents(
ddca8f33 273 $all = 0,
97c1cf60 274 $id = NULL,
353ffa53 275 $isActive = TRUE,
97c1cf60 276 $checkPermission = TRUE,
277 $titleOnly = FALSE
6a488035
TO
278 ) {
279 $query = "
280SELECT `id`, `title`, `start_date`
281FROM `civicrm_event`
282WHERE ( civicrm_event.is_template IS NULL OR civicrm_event.is_template = 0 )";
283
97c1cf60 284 if (!empty($id)) {
836f1f3f 285 $op = is_array($id) ? 'IN' : '=';
286 $where = CRM_Contact_BAO_Query::buildClause('id', $op, $id);
287 $query .= " AND {$where}";
6a488035 288 }
c2be40dc
AH
289 elseif ($all == 0) {
290 // find only events ending in the future
6a488035 291 $endDate = date('YmdHis');
b093546a
BS
292 $query .= "
293 AND ( `end_date` >= {$endDate} OR
294 (
295 ( end_date IS NULL OR end_date = '' ) AND start_date >= {$endDate}
296 )
297 )";
6a488035 298 }
c2be40dc
AH
299 elseif ($all == 2) {
300 // find only events starting in the last 3 months
301 $startDate = date('YmdHis', strtotime('3 months ago'));
302 $query .= " AND ( `start_date` >= {$startDate} OR start_date IS NULL )";
303 }
6a488035
TO
304 if ($isActive) {
305 $query .= " AND civicrm_event.is_active = 1";
306 }
307
308 $query .= " ORDER BY title asc";
309 $events = array();
310
311 $dao = CRM_Core_DAO::executeQuery($query);
312 while ($dao->fetch()) {
313 if ((!$checkPermission ||
314 CRM_Event_BAO_Event::checkPermission($dao->id)
315 ) &&
316 $dao->title
317 ) {
97c1cf60 318 $events[$dao->id] = $dao->title;
319 if (!$titleOnly) {
320 $events[$dao->id] .= ' - ' . CRM_Utils_Date::customFormat($dao->start_date);
321 }
6a488035
TO
322 }
323 }
324
325 return $events;
326 }
327
328 /**
66f9e52b 329 * Get events Summary.
6a488035 330 *
a6c01b45
CW
331 * @return array
332 * Array of event summary values
6a488035 333 */
00be9182 334 public static function getEventSummary() {
6a488035
TO
335 $eventSummary = $eventIds = array();
336 $config = CRM_Core_Config::singleton();
337
338 // get permission and include them here
339 // does not scale, but rearranging code for now
340 // FIXME in a future release
341 $permissions = CRM_Event_BAO_Event::checkPermission();
342 $validEventIDs = '';
343 if (empty($permissions[CRM_Core_Permission::VIEW])) {
344 $eventSummary['total_events'] = 0;
345 return $eventSummary;
346 }
347 else {
348 $validEventIDs = " AND civicrm_event.id IN ( " . implode(',', array_values($permissions[CRM_Core_Permission::VIEW])) . " ) ";
349 }
350
351 // We're fetching recent and upcoming events (where start date is 7 days ago OR later)
352 $query = "
353SELECT count(id) as total_events
354FROM civicrm_event
355WHERE civicrm_event.is_active = 1 AND
356 ( civicrm_event.is_template IS NULL OR civicrm_event.is_template = 0) AND
357 civicrm_event.start_date >= DATE_SUB( NOW(), INTERVAL 7 day )
358 $validEventIDs";
359
360 $dao = CRM_Core_DAO::executeQuery($query);
361
362 if ($dao->fetch()) {
363 $eventSummary['total_events'] = $dao->total_events;
364 }
365
366 if (empty($eventSummary) ||
367 $dao->total_events == 0
368 ) {
369 return $eventSummary;
370 }
371
372 //get the participant status type values.
29b6b1dd 373 $cpstObject = new CRM_Event_DAO_ParticipantStatusType();
374 $cpst = $cpstObject->getTableName();
375 $query = "SELECT id, name, label, class FROM $cpst";
d7d7d5ab 376 $status = CRM_Core_DAO::executeQuery($query);
6a488035
TO
377 $statusValues = array();
378 while ($status->fetch()) {
379 $statusValues[$status->id]['id'] = $status->id;
380 $statusValues[$status->id]['name'] = $status->name;
afc3dfa7 381 $statusValues[$status->id]['label'] = $status->label;
6a488035
TO
382 $statusValues[$status->id]['class'] = $status->class;
383 }
384
385 // Get the Id of Option Group for Event Types
386 $optionGroupDAO = new CRM_Core_DAO_OptionGroup();
387 $optionGroupDAO->name = 'event_type';
388 $optionGroupId = NULL;
389 if ($optionGroupDAO->find(TRUE)) {
390 $optionGroupId = $optionGroupDAO->id;
391 }
b8ce3328 392 // Get the event summary display preferences
aaffa79f 393 $show_max_events = Civi::settings()->get('show_events');
b8ce3328 394 // show all events if show_events is set to a negative value
fff710f5 395 if (isset($show_max_events) && $show_max_events >= 0) {
b8ce3328 396 $event_summary_limit = "LIMIT 0, $show_max_events";
397 }
398 else {
399 $event_summary_limit = "";
400 }
6a488035
TO
401
402 $query = "
403SELECT civicrm_event.id as id, civicrm_event.title as event_title, civicrm_event.is_public as is_public,
404 civicrm_event.max_participants as max_participants, civicrm_event.start_date as start_date,
405 civicrm_event.end_date as end_date, civicrm_event.is_online_registration, civicrm_event.is_monetary, civicrm_event.is_show_location,civicrm_event.is_map as is_map, civicrm_option_value.label as event_type, civicrm_tell_friend.is_active as is_friend_active,
406 civicrm_event.slot_label_id,
407 civicrm_event.summary as summary,
72c67af6 408 civicrm_pcp_block.id as is_pcp_enabled,
30051f5b 409 civicrm_recurring_entity.parent_id as is_repeating_event
6a488035
TO
410FROM civicrm_event
411LEFT JOIN civicrm_option_value ON (
412 civicrm_event.event_type_id = civicrm_option_value.value AND
413 civicrm_option_value.option_group_id = %1 )
414LEFT JOIN civicrm_tell_friend ON ( civicrm_tell_friend.entity_id = civicrm_event.id AND civicrm_tell_friend.entity_table = 'civicrm_event' )
415LEFT JOIN civicrm_pcp_block ON ( civicrm_pcp_block.entity_id = civicrm_event.id AND civicrm_pcp_block.entity_table = 'civicrm_event')
72c67af6 416LEFT JOIN civicrm_recurring_entity ON ( civicrm_event.id = civicrm_recurring_entity.entity_id AND civicrm_recurring_entity.entity_table = 'civicrm_event' )
6a488035
TO
417WHERE civicrm_event.is_active = 1 AND
418 ( civicrm_event.is_template IS NULL OR civicrm_event.is_template = 0) AND
419 civicrm_event.start_date >= DATE_SUB( NOW(), INTERVAL 7 day )
420 $validEventIDs
6a488035 421ORDER BY civicrm_event.start_date ASC
b8ce3328 422$event_summary_limit
6a488035
TO
423";
424 $eventParticipant = array();
425
426 $properties = array(
d7d7d5ab 427 'id' => 'id',
428 'eventTitle' => 'event_title',
429 'isPublic' => 'is_public',
430 'maxParticipants' => 'max_participants',
431 'startDate' => 'start_date',
432 'endDate' => 'end_date',
433 'eventType' => 'event_type',
434 'isMap' => 'is_map',
435 'participants' => 'participants',
6a488035
TO
436 'notCountedDueToRole' => 'notCountedDueToRole',
437 'notCountedDueToStatus' => 'notCountedDueToStatus',
438 'notCountedParticipants' => 'notCountedParticipants',
439 );
440
441 $params = array(1 => array($optionGroupId, 'Integer'));
50a23755 442 $mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
46f5566c 443 'id' => CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID,
50a23755 444 )));
6a488035
TO
445 $dao = CRM_Core_DAO::executeQuery($query, $params);
446 while ($dao->fetch()) {
447 foreach ($properties as $property => $name) {
448 $set = NULL;
449 switch ($name) {
450 case 'is_public':
451 if ($dao->$name) {
452 $set = 'Yes';
453 }
454 else {
455 $set = 'No';
456 }
457 $eventSummary['events'][$dao->id][$property] = $set;
458 break;
459
460 case 'is_map':
461 if ($dao->$name && $config->mapAPIKey) {
d7d7d5ab 462 $values = array();
463 $ids = array();
464 $params = array('entity_id' => $dao->id, 'entity_table' => 'civicrm_event');
6a488035
TO
465 $values['location'] = CRM_Core_BAO_Location::getValues($params, TRUE);
466 if (is_numeric(CRM_Utils_Array::value('geo_code_1', $values['location']['address'][1])) ||
f425e142 467 (
6a488035
TO
468 !empty($values['location']['address'][1]['city']) &&
469 !empty($values['location']['address'][1]['state_province_id'])
470 )
471 ) {
472 $set = CRM_Utils_System::url('civicrm/contact/map/event', "reset=1&eid={$dao->id}");
473 }
474 }
475
476 $eventSummary['events'][$dao->id][$property] = $set;
c613b5fb
MW
477 if (is_array($permissions[CRM_Core_Permission::EDIT])
478 && in_array($dao->id, $permissions[CRM_Core_Permission::EDIT])) {
7431d9cc 479 $eventSummary['events'][$dao->id]['configure'] = CRM_Utils_System::url('civicrm/admin/event', "action=update&id=$dao->id&reset=1");
6a488035
TO
480 }
481 break;
482
483 case 'end_date':
484 case 'start_date':
485 $eventSummary['events'][$dao->id][$property] = CRM_Utils_Date::customFormat($dao->$name,
486 NULL, array('d')
487 );
488 break;
489
490 case 'participants':
491 case 'notCountedDueToRole':
492 case 'notCountedDueToStatus':
493 case 'notCountedParticipants':
494 $set = NULL;
495 $propertyCnt = 0;
496 if ($name == 'participants') {
497 $propertyCnt = self::getParticipantCount($dao->id);
498 if ($propertyCnt) {
499 $set = CRM_Utils_System::url('civicrm/event/search',
500 "reset=1&force=1&event=$dao->id&status=true&role=true"
501 );
502 }
503 }
504 elseif ($name == 'notCountedParticipants') {
505 $propertyCnt = self::getParticipantCount($dao->id, TRUE, FALSE, TRUE, FALSE);
506 if ($propertyCnt) {
507 // FIXME : selector fail to search w/ OR operator.
508 // $set = CRM_Utils_System::url( 'civicrm/event/search',
509 // "reset=1&force=1&event=$dao->id&status=false&role=false" );
510 }
511 }
512 elseif ($name == 'notCountedDueToStatus') {
513 $propertyCnt = self::getParticipantCount($dao->id, TRUE, FALSE, FALSE, FALSE);
514 if ($propertyCnt) {
515 $set = CRM_Utils_System::url('civicrm/event/search',
516 "reset=1&force=1&event=$dao->id&status=false"
517 );
518 }
519 }
520 else {
521 $propertyCnt = self::getParticipantCount($dao->id, FALSE, FALSE, TRUE, FALSE);
522 if ($propertyCnt) {
523 $set = CRM_Utils_System::url('civicrm/event/search',
524 "reset=1&force=1&event=$dao->id&role=false"
525 );
526 }
527 }
528
529 $eventSummary['events'][$dao->id][$property] = $propertyCnt;
530 $eventSummary['events'][$dao->id][$name . '_url'] = $set;
531 break;
532
533 default:
534 $eventSummary['events'][$dao->id][$property] = $dao->$name;
535 break;
536 }
537 }
538
539 // prepare the area for per-status participant counts
540 $statusClasses = array('Positive', 'Pending', 'Waiting', 'Negative');
541 $eventSummary['events'][$dao->id]['statuses'] = array_fill_keys($statusClasses, array());
542
543 $eventSummary['events'][$dao->id]['friend'] = $dao->is_friend_active;
544 $eventSummary['events'][$dao->id]['is_monetary'] = $dao->is_monetary;
545 $eventSummary['events'][$dao->id]['is_online_registration'] = $dao->is_online_registration;
546 $eventSummary['events'][$dao->id]['is_show_location'] = $dao->is_show_location;
547 $eventSummary['events'][$dao->id]['is_subevent'] = $dao->slot_label_id;
548 $eventSummary['events'][$dao->id]['is_pcp_enabled'] = $dao->is_pcp_enabled;
9e1bf145 549 $eventSummary['events'][$dao->id]['reminder'] = CRM_Core_BAO_ActionSchedule::isConfigured($dao->id, $mapping->getId());
72c67af6 550 $eventSummary['events'][$dao->id]['is_repeating_event'] = $dao->is_repeating_event;
eea16664 551
6a488035
TO
552 $statusTypes = CRM_Event_PseudoConstant::participantStatus();
553 foreach ($statusValues as $statusId => $statusValue) {
554 if (!array_key_exists($statusId, $statusTypes)) {
555 continue;
556 }
557 $class = $statusValue['class'];
558 $statusCount = self::eventTotalSeats($dao->id, "( participant.status_id = {$statusId} )");
559 if ($statusCount) {
560 $urlString = "reset=1&force=1&event={$dao->id}&status=$statusId";
0479b4c8 561 $statusInfo = array(
ddca8f33 562 'url' => CRM_Utils_System::url('civicrm/event/search', $urlString),
6a488035 563 'name' => $statusValue['name'],
afc3dfa7 564 'label' => $statusValue['label'],
6a488035
TO
565 'count' => $statusCount,
566 );
567 $eventSummary['events'][$dao->id]['statuses'][$class][] = $statusInfo;
568 }
569 }
570 }
571
d7d7d5ab 572 $countedRoles = CRM_Event_PseudoConstant::participantRole(NULL, 'filter = 1');
573 $nonCountedRoles = CRM_Event_PseudoConstant::participantRole(NULL, '( filter = 0 OR filter IS NULL )');
574 $countedStatus = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
6a488035
TO
575 $nonCountedStatus = CRM_Event_PseudoConstant::participantStatus(NULL, '( is_counted = 0 OR is_counted IS NULL )');
576
577 $countedStatusANDRoles = array_merge($countedStatus, $countedRoles);
578 $nonCountedStatusANDRoles = array_merge($nonCountedStatus, $nonCountedRoles);
579
580 $eventSummary['nonCountedRoles'] = implode('/', array_values($nonCountedRoles));
581 $eventSummary['nonCountedStatus'] = implode('/', array_values($nonCountedStatus));
582 $eventSummary['countedStatusANDRoles'] = implode('/', array_values($countedStatusANDRoles));
583 $eventSummary['nonCountedStatusANDRoles'] = implode('/', array_values($nonCountedStatusANDRoles));
584
585 return $eventSummary;
586 }
587
588 /**
66f9e52b 589 * Get participant count.
6a488035 590 *
100fef9d 591 * @param int $eventId
5396af74 592 * @param bool $considerStatus consider status for participant count.
d4dd1e85 593 * Consider status for participant count.
5396af74 594 * @param bool $status counted participant.
d4dd1e85 595 * Consider counted participant.
5396af74 596 * @param bool $considerRole consider role for participant count.
d4dd1e85 597 * Consider role for participant count.
5396af74 598 * @param bool $role consider counted( is filter role) participant.
d4dd1e85 599 * Consider counted( is filter role) participant.
77b97be7 600 *
a6c01b45
CW
601 * @return array
602 * array with count of participants for each event based on status/role
6a488035 603 */
ddca8f33
TO
604 public static function getParticipantCount(
605 $eventId,
353ffa53
TO
606 $considerStatus = TRUE,
607 $status = TRUE,
608 $considerRole = TRUE,
609 $role = TRUE
6a488035
TO
610 ) {
611
612 // consider both role and status for counted participants, CRM-4924.
613 $operator = " AND ";
614 // not counted participant.
615 if ($considerStatus && $considerRole && !$status && !$role) {
616 $operator = " OR ";
617 }
618 $clause = array();
619 if ($considerStatus) {
620 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
621 $statusClause = 'NOT IN';
622 if ($status) {
623 $statusClause = 'IN';
624 }
625 $status = implode(',', array_keys($statusTypes));
626 if (empty($status)) {
627 $status = 0;
628 }
629 $clause[] = "participant.status_id {$statusClause} ( {$status} ) ";
630 }
631
632 if ($considerRole) {
633 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, 'filter = 1');
634 $roleClause = 'NOT IN';
635 if ($role) {
636 $roleClause = 'IN';
637 }
0906de17
MM
638
639 if (!empty($roleTypes)) {
640 $escapedRoles = array();
641 foreach (array_keys($roleTypes) as $roleType) {
642 $escapedRoles[] = CRM_Utils_Type::escape($roleType, 'String');
643 }
644
aba574d4 645 $clause[] = "participant.role_id {$roleClause} ( '" . implode("', '", $escapedRoles) . "' ) ";
6a488035 646 }
6a488035
TO
647 }
648
649 $sqlClause = '';
650 if (!empty($clause)) {
651 $sqlClause = ' ( ' . implode($operator, $clause) . ' )';
652 }
653
654 return self::eventTotalSeats($eventId, $sqlClause);
655 }
656
657 /**
66f9e52b 658 * Get the information to map a event.
6a488035 659 *
d4dd1e85
TO
660 * @param int $id
661 * For which we want map info.
6a488035 662 *
72b3a70c
CW
663 * @return null|string
664 * title of the event
6a488035 665 */
00be9182 666 public static function &getMapInfo(&$id) {
6a488035
TO
667
668 $sql = "
669SELECT
670 civicrm_event.id AS event_id,
671 civicrm_event.title AS display_name,
672 civicrm_address.street_address AS street_address,
673 civicrm_address.city AS city,
674 civicrm_address.postal_code AS postal_code,
675 civicrm_address.postal_code_suffix AS postal_code_suffix,
676 civicrm_address.geo_code_1 AS latitude,
677 civicrm_address.geo_code_2 AS longitude,
678 civicrm_state_province.abbreviation AS state,
679 civicrm_country.name AS country,
680 civicrm_location_type.name AS location_type
681FROM
682 civicrm_event
683 LEFT JOIN civicrm_loc_block ON ( civicrm_event.loc_block_id = civicrm_loc_block.id )
684 LEFT JOIN civicrm_address ON ( civicrm_loc_block.address_id = civicrm_address.id )
685 LEFT JOIN civicrm_state_province ON ( civicrm_address.state_province_id = civicrm_state_province.id )
686 LEFT JOIN civicrm_country ON civicrm_address.country_id = civicrm_country.id
687 LEFT JOIN civicrm_location_type ON ( civicrm_location_type.id = civicrm_address.location_type_id )
688WHERE civicrm_address.geo_code_1 IS NOT NULL
689 AND civicrm_address.geo_code_2 IS NOT NULL
690 AND civicrm_event.id = " . CRM_Utils_Type::escape($id, 'Integer');
691
692 $dao = new CRM_Core_DAO();
693 $dao->query($sql);
694
695 $locations = array();
696
697 $config = CRM_Core_Config::singleton();
698
699 while ($dao->fetch()) {
700
701 $location = array();
702 $location['displayName'] = addslashes($dao->display_name);
703 $location['lat'] = $dao->latitude;
704 $location['marker_class'] = 'Event';
705 $location['lng'] = $dao->longitude;
706
707 $params = array('entity_id' => $id, 'entity_table' => 'civicrm_event');
708 $addressValues = CRM_Core_BAO_Location::getValues($params, TRUE);
ddca8f33 709 $location['address'] = str_replace(array(
353ffa53
TO
710 "\r",
711 "\n",
712 ), '', addslashes(nl2br($addressValues['address'][1]['display_text'])));
6a488035
TO
713
714 $location['url'] = CRM_Utils_System::url('civicrm/event/register', 'reset=1&id=' . $dao->event_id);
715 $location['location_type'] = $dao->location_type;
716 $eventImage = '<img src="' . $config->resourceBase . 'i/contact_org.gif" alt="Organization " height="20" width="15" />';
717 $location['image'] = $eventImage;
718 $location['displayAddress'] = str_replace('<br />', ', ', $location['address']);
719 $locations[] = $location;
720 }
721 return $locations;
722 }
723
724 /**
66f9e52b 725 * Get the complete information for one or more events.
6a488035 726 *
d4dd1e85
TO
727 * @param date $start
728 * Get events with start date >= this date.
5396af74 729 * @param int $type Get events on the a specific event type (by event_type_id).
d4dd1e85 730 * Get events on the a specific event type (by event_type_id).
5396af74 731 * @param int $eventId Return a single event - by event id.
d4dd1e85
TO
732 * Return a single event - by event id.
733 * @param date $end
734 * Also get events with end date >= this date.
5396af74 735 * @param bool $onlyPublic Include public events only, default TRUE.
d4dd1e85 736 * Include public events only, default TRUE.
6a488035 737 *
a6c01b45
CW
738 * @return array
739 * array of all the events that are searched
6a488035 740 */
5396af74 741 public static function &getCompleteInfo(
0ae0bb0e
DL
742 $start = NULL,
743 $type = NULL,
744 $eventId = NULL,
745 $end = NULL,
746 $onlyPublic = TRUE
747 ) {
748 $publicCondition = NULL;
749 if ($onlyPublic) {
750 $publicCondition = " AND civicrm_event.is_public = 1";
751 }
752
6a488035
TO
753 $dateCondition = '';
754 // if start and end date are NOT passed, return all events with start_date OR end_date >= today CRM-5133
755 if ($start) {
756 // get events with start_date >= requested start
757 $startDate = CRM_Utils_Type::escape($start, 'Date');
758 $dateCondition .= " AND ( civicrm_event.start_date >= {$startDate} )";
759 }
760
761 if ($end) {
762 // also get events with end_date <= requested end
763 $endDate = CRM_Utils_Type::escape($end, 'Date');
764 $dateCondition .= " AND ( civicrm_event.end_date <= '{$endDate}' ) ";
765 }
766
0ae0bb0e
DL
767 // CRM-9421 and CRM-8620 Default mode for ical/rss feeds. No start or end filter passed.
768 // Need to exclude old events with only start date
6a488035
TO
769 // and not exclude events in progress (start <= today and end >= today). DGG
770 if (empty($start) && empty($end)) {
771 // get events with end date >= today, not sure of this logic
772 // but keeping this for backward compatibility as per issue CRM-5133
773 $today = date("Y-m-d G:i:s");
774 $dateCondition .= " AND ( civicrm_event.end_date >= '{$today}' OR civicrm_event.start_date >= '{$today}' ) ";
775 }
776
777 if ($type) {
778 $typeCondition = " AND civicrm_event.event_type_id = " . CRM_Utils_Type::escape($type, 'Integer');
779 }
780
781 // Get the Id of Option Group for Event Types
782 $optionGroupDAO = new CRM_Core_DAO_OptionGroup();
783 $optionGroupDAO->name = 'event_type';
784 $optionGroupId = NULL;
785 if ($optionGroupDAO->find(TRUE)) {
786 $optionGroupId = $optionGroupDAO->id;
787 }
788
789 $query = "
790SELECT
791 civicrm_event.id as event_id,
792 civicrm_email.email as email,
793 civicrm_event.title as title,
794 civicrm_event.summary as summary,
795 civicrm_event.start_date as start,
796 civicrm_event.end_date as end,
797 civicrm_event.description as description,
798 civicrm_event.is_show_location as is_show_location,
799 civicrm_event.is_online_registration as is_online_registration,
800 civicrm_event.registration_link_text as registration_link_text,
801 civicrm_event.registration_start_date as registration_start_date,
802 civicrm_event.registration_end_date as registration_end_date,
803 civicrm_option_value.label as event_type,
804 civicrm_address.name as address_name,
805 civicrm_address.street_address as street_address,
806 civicrm_address.supplemental_address_1 as supplemental_address_1,
807 civicrm_address.supplemental_address_2 as supplemental_address_2,
207f62c6 808 civicrm_address.supplemental_address_3 as supplemental_address_3,
6a488035
TO
809 civicrm_address.city as city,
810 civicrm_address.postal_code as postal_code,
811 civicrm_address.postal_code_suffix as postal_code_suffix,
812 civicrm_state_province.abbreviation as state,
813 civicrm_country.name AS country
814FROM civicrm_event
815LEFT JOIN civicrm_loc_block ON civicrm_event.loc_block_id = civicrm_loc_block.id
816LEFT JOIN civicrm_address ON civicrm_loc_block.address_id = civicrm_address.id
817LEFT JOIN civicrm_state_province ON civicrm_address.state_province_id = civicrm_state_province.id
818LEFT JOIN civicrm_country ON civicrm_address.country_id = civicrm_country.id
819LEFT JOIN civicrm_email ON civicrm_loc_block.email_id = civicrm_email.id
820LEFT JOIN civicrm_option_value ON (
821 civicrm_event.event_type_id = civicrm_option_value.value AND
822 civicrm_option_value.option_group_id = %1 )
823WHERE civicrm_event.is_active = 1
6a488035 824 AND (is_template = 0 OR is_template IS NULL)
0ae0bb0e 825 {$publicCondition}
6a488035
TO
826 {$dateCondition}";
827
828 if (isset($typeCondition)) {
829 $query .= $typeCondition;
830 }
831
832 if (isset($eventId)) {
833 $query .= " AND civicrm_event.id =$eventId ";
834 }
835 $query .= " ORDER BY civicrm_event.start_date ASC";
836
6a488035 837 $params = array(1 => array($optionGroupId, 'Integer'));
ddca8f33
TO
838 $dao = CRM_Core_DAO::executeQuery($query, $params);
839 $all = array();
6a488035
TO
840 $config = CRM_Core_Config::singleton();
841
842 $baseURL = parse_url($config->userFrameworkBaseURL);
843 $url = "@" . $baseURL['host'];
a7488080 844 if (!empty($baseURL['path'])) {
6a488035
TO
845 $url .= substr($baseURL['path'], 0, -1);
846 }
847
848 // check 'view event info' permission
e2d09ab4
EM
849 //@todo - per CRM-14626 we have resolved that 'view event info' means 'view ALL event info'
850 // and passing in the specific permission here will short-circuit the evaluation of permission to
851 // see specific events (doesn't seem relevant to this call
852 // however, since this function is accessed only by a convoluted call from a joomla block function
853 // it seems safer not to touch here. Suggestion is that CRM_Core_Permission::check(array or relevant permissions) would
854 // be clearer & safer here
6a488035
TO
855 $permissions = CRM_Core_Permission::event(CRM_Core_Permission::VIEW);
856
857 // check if we're in shopping cart mode for events
aaffa79f 858 $enable_cart = Civi::settings()->get('enable_cart');
ddca8f33
TO
859 if ($enable_cart) {
860 }
6a488035 861 while ($dao->fetch()) {
9f0f552c 862 if (!empty($permissions) && in_array($dao->event_id, $permissions)) {
6a488035
TO
863 $info = array();
864 $info['uid'] = "CiviCRM_EventID_{$dao->event_id}_" . md5($config->userFrameworkBaseURL) . $url;
865
866 $info['title'] = $dao->title;
867 $info['event_id'] = $dao->event_id;
868 $info['summary'] = $dao->summary;
869 $info['description'] = $dao->description;
870 $info['start_date'] = $dao->start;
871 $info['end_date'] = $dao->end;
872 $info['contact_email'] = $dao->email;
873 $info['event_type'] = $dao->event_type;
874 $info['is_show_location'] = $dao->is_show_location;
875 $info['is_online_registration'] = $dao->is_online_registration;
876 $info['registration_link_text'] = $dao->registration_link_text;
877 $info['registration_start_date'] = $dao->registration_start_date;
878 $info['registration_end_date'] = $dao->registration_end_date;
879
880 $address = '';
881
882 $addrFields = array(
883 'address_name' => $dao->address_name,
884 'street_address' => $dao->street_address,
885 'supplemental_address_1' => $dao->supplemental_address_1,
886 'supplemental_address_2' => $dao->supplemental_address_2,
207f62c6 887 'supplemental_address_3' => $dao->supplemental_address_3,
6a488035
TO
888 'city' => $dao->city,
889 'state_province' => $dao->state,
890 'postal_code' => $dao->postal_code,
891 'postal_code_suffix' => $dao->postal_code_suffix,
892 'country' => $dao->country,
893 'county' => NULL,
894 );
895
896 CRM_Utils_String::append($address, ', ',
897 CRM_Utils_Address::format($addrFields)
898 );
899 $info['location'] = $address;
900 $info['url'] = CRM_Utils_System::url('civicrm/event/info', 'reset=1&id=' . $dao->event_id, TRUE, NULL, FALSE);
901
902 if ($enable_cart) {
903 $reg = CRM_Event_Cart_BAO_EventInCart::get_registration_link($dao->event_id);
904 $info['registration_link'] = CRM_Utils_System::url($reg['path'], $reg['query'], TRUE);
905 $info['registration_link_text'] = $reg['label'];
906 }
907
908 $all[] = $info;
909 }
910 }
911
912 return $all;
913 }
914
915 /**
3bdf1f3a 916 * Make a copy of a Event.
917 *
918 * Include all the fields in the event Wizard.
6a488035 919 *
d4dd1e85
TO
920 * @param int $id
921 * The event id to copy.
6a488035 922 * boolean $afterCreate call to copy after the create function
2a6da8d7
EM
923 * @param null $newEvent
924 * @param bool $afterCreate
925 *
10525e44 926 * @return CRM_Event_DAO_Event
6a488035 927 */
00be9182 928 public static function copy($id, $newEvent = NULL, $afterCreate = FALSE) {
6a488035 929
10525e44 930 $eventValues = array();
6a488035
TO
931
932 //get the require event values.
933 $eventParams = array('id' => $id);
ddca8f33
TO
934 $returnProperties = array(
935 'loc_block_id',
936 'is_show_location',
937 'default_fee_id',
938 'default_discount_fee_id',
21dfd5f5 939 'is_template',
ddca8f33 940 );
6a488035
TO
941
942 CRM_Core_DAO::commonRetrieve('CRM_Event_DAO_Event', $eventParams, $eventValues, $returnProperties);
943
944 // since the location is sharable, lets use the same loc_block_id.
945 $locBlockId = CRM_Utils_Array::value('loc_block_id', $eventValues);
946
0479b4c8 947 $fieldsFix = ($afterCreate) ? array() : array('prefix' => array('title' => ts('Copy of') . ' '));
a7488080 948 if (empty($eventValues['is_show_location'])) {
6a488035
TO
949 $fieldsFix['prefix']['is_show_location'] = 0;
950 }
951
952 if ($newEvent && is_a($newEvent, 'CRM_Event_DAO_Event')) {
953 $copyEvent = $newEvent;
954 }
955
956 if (!isset($copyEvent)) {
957 $copyEvent = &CRM_Core_DAO::copyGeneric('CRM_Event_DAO_Event',
958 array('id' => $id),
ddca8f33
TO
959 array(
960 'loc_block_id' =>
5396af74 961 ($locBlockId) ? $locBlockId : NULL,
ddca8f33
TO
962 ),
963 $fieldsFix
964 );
6a488035 965 }
9da8dc8c 966 CRM_Price_BAO_PriceSet::copyPriceSet('civicrm_event', $id, $copyEvent->id);
6a488035
TO
967 $copyUF = &CRM_Core_DAO::copyGeneric('CRM_Core_DAO_UFJoin',
968 array(
969 'entity_id' => $id,
970 'entity_table' => 'civicrm_event',
971 ),
972 array('entity_id' => $copyEvent->id)
973 );
974
975 $copyTellFriend = &CRM_Core_DAO::copyGeneric('CRM_Friend_DAO_Friend',
976 array(
977 'entity_id' => $id,
978 'entity_table' => 'civicrm_event',
979 ),
980 array('entity_id' => $copyEvent->id)
981 );
982
983 $copyPCP = &CRM_Core_DAO::copyGeneric('CRM_PCP_DAO_PCPBlock',
984 array(
985 'entity_id' => $id,
986 'entity_table' => 'civicrm_event',
987 ),
988 array('entity_id' => $copyEvent->id),
989 array('replace' => array('target_entity_id' => $copyEvent->id))
990 );
991
50a23755 992 $oldMapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
46f5566c 993 'id' => ($eventValues['is_template'] ? CRM_Event_ActionMapping::EVENT_TPL_MAPPING_ID : CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID),
50a23755
TO
994 )));
995 $copyMapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
46f5566c 996 'id' => ($copyEvent->is_template == 1 ? CRM_Event_ActionMapping::EVENT_TPL_MAPPING_ID : CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID),
50a23755 997 )));
6a488035 998 $copyReminder = &CRM_Core_DAO::copyGeneric('CRM_Core_DAO_ActionSchedule',
9e1bf145
TO
999 array('entity_value' => $id, 'mapping_id' => $oldMapping->getId()),
1000 array('entity_value' => $copyEvent->id, 'mapping_id' => $copyMapping->getId())
6a488035 1001 );
4a94edec 1002
6a488035 1003 if (!$afterCreate) {
63500972
CR
1004 // CRM-19302
1005 self::copyCustomFields($id, $copyEvent->id);
6a488035 1006 }
4a94edec 1007
6a488035
TO
1008 $copyEvent->save();
1009
1010 CRM_Utils_System::flushCache();
1011 if (!$afterCreate) {
1012 CRM_Utils_Hook::copy('Event', $copyEvent);
1013 }
1014 return $copyEvent;
1015 }
4a94edec 1016
63500972 1017 /**
4a94edec 1018 * Method that copies custom fields values from an old event to a new one. Fixes bug CRM-19302,
1019 * where if a custom field of File type was present, left both events using the same file,
63500972 1020 * breaking download URL's for the old event.
4a94edec 1021 *
63500972
CR
1022 * @param int $oldEventID
1023 * @param int $newCopyID
1024 */
1025 public static function copyCustomFields($oldEventID, $newCopyID) {
1026 // Obtain custom values for old event
1027 $customParams = $htmlType = array();
1028 $customValues = CRM_Core_BAO_CustomValueTable::getEntityValues($oldEventID, 'Event');
4a94edec 1029
63500972
CR
1030 // If custom values present, we copy them
1031 if (!empty($customValues)) {
63500972
CR
1032 // Get Field ID's and identify File type attributes, to handle file copying.
1033 $fieldIds = implode(', ', array_keys($customValues));
1034 $sql = "SELECT id FROM civicrm_custom_field WHERE html_type = 'File' AND id IN ( {$fieldIds} )";
1035 $result = CRM_Core_DAO::executeQuery($sql);
4a94edec 1036
63500972
CR
1037 // Build array of File type fields
1038 while ($result->fetch()) {
1039 $htmlType[] = $result->id;
1040 }
4a94edec 1041
63500972
CR
1042 // Build params array of custom values
1043 foreach ($customValues as $field => $value) {
1044 if ($value !== NULL) {
1045 // Handle File type attributes
1046 if (in_array($field, $htmlType)) {
1047 $fileValues = CRM_Core_BAO_File::path($value, $oldEventID);
1048 $customParams["custom_{$field}_-1"] = array(
33d245c8 1049 'name' => CRM_Utils_File::duplicate($fileValues[0]),
63500972
CR
1050 'type' => $fileValues[1],
1051 );
1052 }
1053 // Handle other types
1054 else {
1055 $customParams["custom_{$field}_-1"] = $value;
1056 }
1057 }
1058 }
4a94edec 1059
63500972
CR
1060 // Save Custom Fields for new Event
1061 CRM_Core_BAO_CustomValueTable::postProcess($customParams, 'civicrm_event', $newCopyID, 'Event');
1062 }
4a94edec 1063
63500972
CR
1064 // copy activity attachments ( if any )
1065 CRM_Core_BAO_File::copyEntityFile('civicrm_event', $oldEventID, 'civicrm_event', $newCopyID);
1066 }
6a488035
TO
1067
1068 /**
3bdf1f3a 1069 * This is sometimes called in a loop (during event search).
1070 *
1071 * We cache the values to prevent repeated calls to the db.
ea3ddccf 1072 *
1073 * @param int $id
1074 *
3d469574 1075 * @return bool
6a488035 1076 */
00be9182 1077 public static function isMonetary($id) {
6a488035
TO
1078 static $isMonetary = array();
1079 if (!array_key_exists($id, $isMonetary)) {
1080 $isMonetary[$id] = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event',
1081 $id,
1082 'is_monetary'
1083 );
1084 }
1085 return $isMonetary[$id];
1086 }
1087
1088 /**
3bdf1f3a 1089 * This is sometimes called in a loop (during event search).
1090 *
1091 * We cache the values to prevent repeated calls to the db.
54957108 1092 *
1093 * @param int $id
1094 *
1095 * @return bool
6a488035 1096 */
00be9182 1097 public static function usesPriceSet($id) {
6a488035
TO
1098 static $usesPriceSet = array();
1099 if (!array_key_exists($id, $usesPriceSet)) {
9da8dc8c 1100 $usesPriceSet[$id] = CRM_Price_BAO_PriceSet::getFor('civicrm_event', $id);
6a488035
TO
1101 }
1102 return $usesPriceSet[$id];
1103 }
1104
1105 /**
3bdf1f3a 1106 * Send e-mails.
6a488035 1107 *
100fef9d 1108 * @param int $contactID
3bdf1f3a 1109 * @param array $values
100fef9d 1110 * @param int $participantId
dd244018
EM
1111 * @param bool $isTest
1112 * @param bool $returnMessageText
d0887629 1113 * @return array|null
6a488035 1114 */
00be9182 1115 public static function sendMail($contactID, &$values, $participantId, $isTest = FALSE, $returnMessageText = FALSE) {
6a488035
TO
1116
1117 $template = CRM_Core_Smarty::singleton();
1118 $gIds = array(
1119 'custom_pre_id' => $values['custom_pre_id'],
1120 'custom_post_id' => $values['custom_post_id'],
1121 );
1122
1123 //get the params submitted by participant.
1124 $participantParams = CRM_Utils_Array::value($participantId, $values['params'], array());
1125
1126 if (!$returnMessageText) {
1127 //send notification email if field values are set (CRM-1941)
1128 foreach ($gIds as $key => $gIdValues) {
1129 if ($gIdValues) {
1130 if (!is_array($gIdValues)) {
ddca8f33 1131 $gIdValues = array($gIdValues);
6a488035
TO
1132 }
1133
1134 foreach ($gIdValues as $gId) {
0479b4c8
TO
1135 $email = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $gId, 'notify');
1136 if ($email) {
1137 //get values of corresponding profile fields for notification
1138 list($profileValues) = self::buildCustomDisplay($gId,
ddca8f33
TO
1139 NULL,
1140 $contactID,
1141 $template,
1142 $participantId,
1143 $isTest,
1144 TRUE,
1145 $participantParams
0479b4c8
TO
1146 );
1147 list($profileValues) = $profileValues;
1148 $val = array(
ddca8f33
TO
1149 'id' => $gId,
1150 'values' => $profileValues,
1151 'email' => $email,
0479b4c8
TO
1152 );
1153 CRM_Core_BAO_UFGroup::commonSendMail($contactID, $val);
1154 }
6a488035
TO
1155 }
1156 }
1157 }
1158 }
6a488035
TO
1159
1160 if ($values['event']['is_email_confirm'] || $returnMessageText) {
1161 list($displayName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactID);
1162
1163 //send email only when email is present
1164 if (isset($email) || $returnMessageText) {
1165 $preProfileID = CRM_Utils_Array::value('custom_pre_id', $values);
1166 $postProfileID = CRM_Utils_Array::value('custom_post_id', $values);
1167
a7488080 1168 if (!empty($values['params']['additionalParticipant'])) {
ddca8f33
TO
1169 $preProfileID = CRM_Utils_Array::value('additional_custom_pre_id', $values, $preProfileID);
1170 $postProfileID = CRM_Utils_Array::value('additional_custom_post_id', $values, $postProfileID);
6a488035
TO
1171 }
1172
1173 self::buildCustomDisplay($preProfileID,
1174 'customPre',
1175 $contactID,
1176 $template,
1177 $participantId,
1178 $isTest,
1179 NULL,
1180 $participantParams
1181 );
1182
1183 self::buildCustomDisplay($postProfileID,
1184 'customPost',
1185 $contactID,
1186 $template,
1187 $participantId,
1188 $isTest,
1189 NULL,
1190 $participantParams
1191 );
1192
1193 $sessions = CRM_Event_Cart_BAO_Conference::get_participant_sessions($participantId);
1194
1195 $tplParams = array_merge($values, $participantParams, array(
ddca8f33
TO
1196 'email' => $email,
1197 'confirm_email_text' => CRM_Utils_Array::value('confirm_email_text', $values['event']),
1198 'isShowLocation' => CRM_Utils_Array::value('is_show_location', $values['event']),
0f2b049e 1199 // The concept of contributeMode is deprecated.
ddca8f33
TO
1200 'contributeMode' => CRM_Utils_Array::value('contributeMode', $template->_tpl_vars),
1201 'participantID' => $participantId,
1202 'conference_sessions' => $sessions,
1203 'credit_card_number' =>
1204 CRM_Utils_System::mungeCreditCard(
1205 CRM_Utils_Array::value('credit_card_number', $participantParams)),
1206 'credit_card_exp_date' =>
1207 CRM_Utils_Date::mysqlToIso(
1208 CRM_Utils_Date::format(
1209 CRM_Utils_Array::value('credit_card_exp_date', $participantParams))),
1210 ));
6a488035 1211
9e58e6ff
PJ
1212 // CRM-13890 : NOTE wait list condition need to be given so that
1213 // wait list message is shown properly in email i.e. WRT online event registration template
10c7ceab 1214 if (empty($tplParams['participant_status']) && empty($values['params']['isOnWaitlist'])) {
66df7769 1215 $statusId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $participantId, 'status_id', 'id', TRUE);
9e58e6ff
PJ
1216 $tplParams['participant_status'] = CRM_Event_PseudoConstant::participantStatus($statusId, NULL, 'label');
1217 }
10c7ceab 1218 //CRM-15754 - if participant_status contains status ID
26fe6f4c 1219 elseif (!empty($tplParams['participant_status']) && CRM_Utils_Rule::integer($tplParams['participant_status'])) {
10c7ceab 1220 $tplParams['participant_status'] = CRM_Event_PseudoConstant::participantStatus($tplParams['participant_status'], NULL, 'label');
1221 }
9e58e6ff 1222
6a488035
TO
1223 $sendTemplateParams = array(
1224 'groupName' => 'msg_tpl_workflow_event',
1225 'valueName' => 'event_online_receipt',
1226 'contactId' => $contactID,
1227 'isTest' => $isTest,
1228 'tplParams' => $tplParams,
ddca8f33 1229 'PDFFilename' => ts('confirmation') . '.pdf',
6a488035
TO
1230 );
1231
1232 // address required during receipt processing (pdf and email receipt)
1233 if ($displayAddress = CRM_Utils_Array::value('address', $values)) {
1234 $sendTemplateParams['tplParams']['address'] = $displayAddress;
0f2b049e 1235 // The concept of contributeMode is deprecated.
6a488035
TO
1236 $sendTemplateParams['tplParams']['contributeMode'] = NULL;
1237 }
1238
1239 // set lineItem details
1240 if ($lineItem = CRM_Utils_Array::value('lineItem', $values)) {
0f2b049e 1241 // check if additional participant, if so filter only to relevant ones
6a488035 1242 // CRM-9902
a7488080 1243 if (!empty($values['params']['additionalParticipant'])) {
0479b4c8 1244 $ownLineItems = array();
ddca8f33
TO
1245 foreach ($lineItem as $liKey => $liValue) {
1246 $firstElement = array_pop($liValue);
1247 if ($firstElement['entity_id'] == $participantId) {
6a488035
TO
1248 $ownLineItems[0] = $lineItem[$liKey];
1249 break;
1250 }
1251 }
ddca8f33 1252 if (!empty($ownLineItems)) {
6a488035
TO
1253 $sendTemplateParams['tplParams']['lineItem'] = $ownLineItems;
1254 }
1255 }
1256 else {
1257 $sendTemplateParams['tplParams']['lineItem'] = $lineItem;
1258 }
1259 }
1260
1261 if ($returnMessageText) {
c6327d7d 1262 list($sent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
6a488035
TO
1263 return array(
1264 'subject' => $subject,
1265 'body' => $message,
1266 'to' => $displayName,
1267 'html' => $html,
1268 );
1269 }
1270 else {
e4933c3f 1271 $sendTemplateParams['from'] = CRM_Utils_Array::value('confirm_from_name', $values['event']) . " <" . CRM_Utils_Array::value('confirm_from_email', $values['event']) . ">";
6a488035
TO
1272 $sendTemplateParams['toName'] = $displayName;
1273 $sendTemplateParams['toEmail'] = $email;
1274 $sendTemplateParams['autoSubmitted'] = TRUE;
1275 $sendTemplateParams['cc'] = CRM_Utils_Array::value('cc_confirm',
1276 $values['event']
1277 );
1278 $sendTemplateParams['bcc'] = CRM_Utils_Array::value('bcc_confirm',
1279 $values['event']
1280 );
9161952c 1281 // append invoice pdf to email
ddca8f33 1282 $template = CRM_Core_Smarty::singleton();
9161952c 1283 $taxAmt = $template->get_template_vars('totalTaxAmount');
aaffa79f 1284 $prefixValue = Civi::settings()->get('contribution_invoice_settings');
9161952c 1285 $invoicing = CRM_Utils_Array::value('invoicing', $prefixValue);
ce933183 1286 if (isset($invoicing) && isset($prefixValue['is_email_pdf']) && !empty($values['contributionId'])) {
0479b4c8 1287 $sendTemplateParams['isEmailPdf'] = TRUE;
d75f2f47 1288 $sendTemplateParams['contributionId'] = $values['contributionId'];
9161952c 1289 }
c6327d7d 1290 CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
6a488035
TO
1291 }
1292 }
1293 }
1294 }
1295
1296 /**
3d469574 1297 * Add the custom fields OR array of participant's profile info.
6a488035 1298 *
100fef9d
CW
1299 * @param int $id
1300 * @param string $name
1301 * @param int $cid
3d469574 1302 * @param string $template
100fef9d 1303 * @param int $participantId
3d469574 1304 * @param bool $isTest
dd244018
EM
1305 * @param bool $isCustomProfile
1306 * @param array $participantParams
3d469574 1307 *
1308 * @return array|null
6a488035 1309 */
5396af74 1310 public static function buildCustomDisplay(
ddca8f33 1311 $id,
6a488035
TO
1312 $name,
1313 $cid,
1314 &$template,
1315 $participantId,
1316 $isTest,
1317 $isCustomProfile = FALSE,
1318 $participantParams = array()
1319 ) {
1320 if (!$id) {
1321 return array(NULL, NULL);
1322 }
1323
1324 if (!is_array($id)) {
1325 $id = CRM_Utils_Type::escape($id, 'Positive');
1326 $profileIds = array($id);
1327 }
1328 else {
1329 $profileIds = $id;
1330 }
1331
5efc507e 1332 $val = $groupTitles = NULL;
6a488035
TO
1333 foreach ($profileIds as $gid) {
1334 if (CRM_Core_BAO_UFGroup::filterUFGroups($gid, $cid)) {
1335 $values = array();
1336 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, CRM_Core_Action::VIEW,
1337 NULL, NULL, FALSE, NULL,
1338 FALSE, NULL, CRM_Core_Permission::CREATE,
1339 'field_name', TRUE
1340 );
1341
1342 //this condition is added, since same contact can have multiple event registrations..
1343 $params = array(array('participant_id', '=', $participantId, 0, 0));
1344
1345 //add participant id
1346 $fields['participant_id'] = array(
1347 'name' => 'participant_id',
aa6228f8 1348 'title' => ts('Participant ID'),
6a488035
TO
1349 );
1350 //check whether its a text drive
1351 if ($isTest) {
1352 $params[] = array('participant_test', '=', 1, 0, 0);
1353 }
1354
1355 //display campaign on thankyou page.
1356 if (array_key_exists('participant_campaign_id', $fields)) {
1357 if ($participantId) {
1358 $campaignId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
1359 $participantId,
1360 'campaign_id'
1361 );
1362 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
1363 $values[$fields['participant_campaign_id']['title']] = CRM_Utils_Array::value($campaignId,
1364 $campaigns
1365 );
1366 }
1367 unset($fields['participant_campaign_id']);
1368 }
1369
1370 $groupTitle = NULL;
1371 foreach ($fields as $k => $v) {
1372 if (!$groupTitle) {
7431d9cc 1373 $groupTitle = $v['groupTitle'];
6a488035
TO
1374 }
1375 // suppress all file fields from display
1376 if (
1377 CRM_Utils_Array::value('data_type', $v, '') == 'File' ||
1378 CRM_Utils_Array::value('name', $v, '') == 'image_URL' ||
1379 CRM_Utils_Array::value('field_type', $v) == 'Formatting'
1380 ) {
1381 unset($fields[$k]);
1382 }
1383 }
1384
1385 if ($groupTitle) {
1386 $groupTitles[] = $groupTitle;
1387 }
1388 //display profile groups those are subscribed by participant.
1389 if (($groups = CRM_Utils_Array::value('group', $participantParams)) &&
1390 is_array($groups)
1391 ) {
1392 $grpIds = array();
1393 foreach ($groups as $grpId => $isSelected) {
1394 if ($isSelected) {
1395 $grpIds[] = $grpId;
1396 }
1397 }
1398 if (!empty($grpIds)) {
1399 //get the group titles.
1400 $grpTitles = array();
ddca8f33
TO
1401 $query = 'SELECT title FROM civicrm_group where id IN ( ' . implode(',', $grpIds) . ' )';
1402 $grp = CRM_Core_DAO::executeQuery($query);
6a488035
TO
1403 while ($grp->fetch()) {
1404 $grpTitles[] = $grp->title;
1405 }
1406 if (!empty($grpTitles) &&
1407 CRM_Utils_Array::value('title', CRM_Utils_Array::value('group', $fields))
1408 ) {
1409 $values[$fields['group']['title']] = implode(', ', $grpTitles);
1410 }
1411 unset($fields['group']);
1412 }
1413 }
1414
1415 CRM_Core_BAO_UFGroup::getValues($cid, $fields, $values, FALSE, $params);
1416
1417 if (isset($fields['participant_status_id']['title']) &&
1418 isset($values[$fields['participant_status_id']['title']]) &&
1419 is_numeric($values[$fields['participant_status_id']['title']])
1420 ) {
1421 $status = array();
1422 $status = CRM_Event_PseudoConstant::participantStatus();
1423 $values[$fields['participant_status_id']['title']] = $status[$values[$fields['participant_status_id']['title']]];
1424 }
1425
1426 if (isset($fields['participant_role_id']['title']) &&
1427 isset($values[$fields['participant_role_id']['title']]) &&
1428 is_numeric($values[$fields['participant_role_id']['title']])
1429 ) {
1430 $roles = array();
1431 $roles = CRM_Event_PseudoConstant::participantRole();
1432 $values[$fields['participant_role_id']['title']] = $roles[$values[$fields['participant_role_id']['title']]];
1433 }
1434
1435 if (isset($fields['participant_register_date']['title']) &&
1436 isset($values[$fields['participant_register_date']['title']])
1437 ) {
1438 $values[$fields['participant_register_date']['title']] = CRM_Utils_Date::customFormat($values[$fields['participant_register_date']['title']]);
1439 }
1440
1441 //handle fee_level for price set
1442 if (isset($fields['participant_fee_level']['title']) &&
1443 isset($values[$fields['participant_fee_level']['title']])
1444 ) {
1445 $feeLevel = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1446 $values[$fields['participant_fee_level']['title']]
1447 );
1448 foreach ($feeLevel as $key => $value) {
1449 if (!$value) {
1450 unset($feeLevel[$key]);
1451 }
1452 }
7431d9cc 1453 $values[$fields['participant_fee_level']['title']] = implode(',', $feeLevel);
6a488035
TO
1454 }
1455
1456 unset($values[$fields['participant_id']['title']]);
1457
1458 $val[] = $values;
1459 }
1460 }
1461
1462 if (count($val)) {
1463 $template->assign($name, $val);
1464 }
1465
1466 if (count($groupTitles)) {
1467 $template->assign($name . '_grouptitle', $groupTitles);
1468 }
1469
1470 //return if we only require array of participant's info.
1471 if ($isCustomProfile) {
1472 if (count($val)) {
1473 return array($val, $groupTitles);
1474 }
1475 else {
1476 return NULL;
1477 }
1478 }
1479 }
1480
1481 /**
66f9e52b 1482 * Build the array for display the profile fields.
6a488035 1483 *
d4dd1e85
TO
1484 * @param array $params
1485 * Key value.
1486 * @param int $gid
1487 * Profile Id.
1488 * @param array $groupTitle
1489 * Profile Group Title.
1490 * @param array $values
1491 * Formatted array of key value.
6a488035 1492 *
77b97be7 1493 * @param array $profileFields
6a488035 1494 */
00be9182 1495 public static function displayProfile(&$params, $gid, &$groupTitle, &$values, &$profileFields = array()) {
6a488035 1496 if ($gid) {
f5f3f029 1497 $config = CRM_Core_Config::singleton();
6a488035
TO
1498 $session = CRM_Core_Session::singleton();
1499 $contactID = $session->get('userID');
1500 if ($contactID) {
1501 if (CRM_Core_BAO_UFGroup::filterUFGroups($gid, $contactID)) {
1502 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, CRM_Core_Action::VIEW);
1503 }
1504 }
1505 else {
1506 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, CRM_Core_Action::ADD);
1507 }
1508
1509 foreach ($fields as $v) {
a7488080 1510 if (!empty($v['groupTitle'])) {
7431d9cc 1511 $groupTitle['groupTitle'] = $v['groupTitle'];
6a488035
TO
1512 break;
1513 }
1514 }
29c4866a 1515
ddca8f33 1516 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
6a488035
TO
1517 //start of code to set the default values
1518 foreach ($fields as $name => $field) {
29c4866a 1519 $customVal = '';
9e7eeb0f 1520 $skip = FALSE;
6a488035
TO
1521 // skip fields that should not be displayed separately
1522 if ($field['skipDisplay']) {
1523 continue;
1524 }
1525
1526 $index = $field['title'];
1527 if ($name === 'organization_name') {
1528 $values[$index] = $params[$name];
1529 }
1530
1531 if ('state_province' == substr($name, 0, 14)) {
1532 if ($params[$name]) {
1533 $values[$index] = CRM_Core_PseudoConstant::stateProvince($params[$name]);
1534 }
1535 else {
1536 $values[$index] = '';
1537 }
1538 }
1539 elseif ('date' == substr($name, -4)) {
f5f3f029
KJ
1540 $values[$index] = CRM_Utils_Date::customFormat(CRM_Utils_Date::processDate($params[$name]),
1541 $config->dateformatFull);
6a488035
TO
1542 }
1543 elseif ('country' == substr($name, 0, 7)) {
1544 if ($params[$name]) {
1545 $values[$index] = CRM_Core_PseudoConstant::country($params[$name]);
1546 }
1547 else {
1548 $values[$index] = '';
1549 }
1550 }
1551 elseif ('county' == substr($name, 0, 6)) {
1552 if ($params[$name]) {
1553 $values[$index] = CRM_Core_PseudoConstant::county($params[$name]);
1554 }
1555 else {
1556 $values[$index] = '';
1557 }
1558 }
aa62b355 1559 elseif (in_array(substr($name, 0, -3), array('gender', 'prefix', 'suffix', 'communication_style'))) {
36c514a1 1560 $values[$index] = CRM_Core_PseudoConstant::getLabel('CRM_Contact_DAO_Contact', $name, $params[$name]);
6a488035
TO
1561 }
1562 elseif (in_array($name, array(
ddca8f33
TO
1563 'addressee',
1564 'email_greeting',
21dfd5f5 1565 'postal_greeting',
ddca8f33 1566 ))) {
6a488035 1567 $filterCondition = array('greeting_type' => $name);
ddca8f33
TO
1568 $greeting = CRM_Core_PseudoConstant::greeting($filterCondition);
1569 $values[$index] = $greeting[$params[$name]];
6a488035
TO
1570 }
1571 elseif ($name === 'preferred_communication_method') {
e7e657f0 1572 $communicationFields = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'preferred_communication_method');
ddca8f33
TO
1573 $compref = array();
1574 $pref = $params[$name];
6a488035
TO
1575 if (is_array($pref)) {
1576 foreach ($pref as $k => $v) {
1577 if ($v) {
1578 $compref[] = $communicationFields[$k];
1579 }
1580 }
1581 }
1582 $values[$index] = implode(',', $compref);
1583 }
1584 elseif ($name == 'contact_sub_type') {
1585 $values[$index] = implode(', ', $params[$name]);
1586 }
1587 elseif ($name == 'group') {
1588 $groups = CRM_Contact_BAO_GroupContact::getGroupList();
1589 $title = array();
1590 foreach ($params[$name] as $gId => $dontCare) {
1591 if ($dontCare) {
1592 $title[] = $groups[$gId];
1593 }
1594 }
1595 $values[$index] = implode(', ', $title);
1596 }
1597 elseif ($name == 'tag') {
1598 $entityTags = $params[$name];
ddca8f33
TO
1599 $allTags = CRM_Core_PseudoConstant::get('CRM_Core_DAO_EntityTag', 'tag_id', array('onlyActive' => FALSE));
1600 $title = array();
6a488035
TO
1601 if (is_array($entityTags)) {
1602 foreach ($entityTags as $tagId => $dontCare) {
1603 $title[] = $allTags[$tagId];
1604 }
1605 }
1606 $values[$index] = implode(', ', $title);
1607 }
1608 elseif ('participant_role_id' == $name OR
1609 'participant_role' == $name
1610 ) {
1611 $roles = CRM_Event_PseudoConstant::participantRole();
1612 $values[$index] = $roles[$params[$name]];
1613 }
1614 elseif ('participant_status_id' == $name OR
1615 'participant_status' == $name
1616 ) {
1617 $status = CRM_Event_PseudoConstant::participantStatus();
1618 $values[$index] = $status[$params[$name]];
1619 }
1620 elseif (substr($name, -11) == 'campaign_id') {
1621 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($params[$name]);
1622 $values[$index] = CRM_Utils_Array::value($params[$name], $campaigns);
1623 }
1624 elseif (strpos($name, '-') !== FALSE) {
1625 list($fieldName, $id) = CRM_Utils_System::explode('-', $name, 2);
1626 $detailName = str_replace(' ', '_', $name);
1627 if (in_array($fieldName, array(
ddca8f33
TO
1628 'state_province',
1629 'country',
21dfd5f5 1630 'county',
ddca8f33 1631 ))) {
6a488035 1632 $values[$index] = $params[$detailName];
ddca8f33 1633 $idx = $detailName . '_id';
6a488035
TO
1634 $values[$index] = $params[$idx];
1635 }
1636 elseif ($fieldName == 'im') {
1637 $providerName = NULL;
1638 if ($providerId = $detailName . '-provider_id') {
1639 $providerName = CRM_Utils_Array::value($params[$providerId], $imProviders);
1640 }
1641 if ($providerName) {
1642 $values[$index] = $params[$detailName] . " (" . $providerName . ")";
1643 }
1644 else {
1645 $values[$index] = $params[$detailName];
1646 }
1647 }
1648 elseif ($fieldName == 'phone') {
1649 $phoneExtField = str_replace('phone', 'phone_ext', $detailName);
1650 if (isset($params[$phoneExtField])) {
1651 $values[$index] = $params[$detailName] . " (" . $params[$phoneExtField] . ")";
1652 }
1653 else {
1654 $values[$index] = $params[$detailName];
1655 }
1656 }
1657 else {
1658 $values[$index] = $params[$detailName];
1659 }
1660 }
1661 else {
1662 if (substr($name, 0, 7) === 'do_not_' or substr($name, 0, 3) === 'is_') {
1663 if ($params[$name]) {
1664 $values[$index] = '[ x ]';
1665 }
1666 }
1667 else {
1668 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($name)) {
1669 $query = "
5f0aaea4 1670SELECT html_type, data_type
6a488035
TO
1671FROM civicrm_custom_field
1672WHERE id = $cfID
1673";
1674 $dao = CRM_Core_DAO::executeQuery($query);
1675 $dao->fetch();
1676 $htmlType = $dao->html_type;
6a488035
TO
1677
1678 if ($htmlType == 'File') {
f5a47ead 1679 $path = CRM_Utils_Array::value('name', $params[$name]);
1680 $fileType = CRM_Utils_Array::value('type', $params[$name]);
1681 $values[$index] = CRM_Utils_File::getFileURL($path, $fileType);
6a488035
TO
1682 }
1683 else {
1684 if ($dao->data_type == 'Int' ||
1685 $dao->data_type == 'Boolean'
1686 ) {
01e21c0a
PJ
1687 $v = $params[$name];
1688 if (!CRM_Utils_System::isNull($v)) {
0479b4c8 1689 $customVal = (int) $v;
01e21c0a 1690 }
6a488035
TO
1691 }
1692 elseif ($dao->data_type == 'Float') {
0479b4c8 1693 $customVal = (float ) ($params[$name]);
6a488035
TO
1694 }
1695 elseif ($dao->data_type == 'Date') {
5f0aaea4
KJ
1696 //@todo note the currently we are using default date time formatting. Since you can select/set
1697 // different date and time format specific to custom field we should consider fixing this
1698 // sometime in the future
f5f3f029
KJ
1699 $customVal = $displayValue = CRM_Utils_Date::customFormat(
1700 CRM_Utils_Date::processDate($params[$name]), $config->dateformatFull);
1701
9e7eeb0f 1702 if (!empty($params[$name . '_time'])) {
f5f3f029
KJ
1703 $customVal = $displayValue = CRM_Utils_Date::customFormat(
1704 CRM_Utils_Date::processDate($params[$name], $params[$name . '_time']),
156d7175 1705 $config->dateformatDatetime);
6a488035 1706 }
9e7eeb0f 1707 $skip = TRUE;
6a488035
TO
1708 }
1709 else {
1710 $customVal = $params[$name];
1711 }
1712 //take the custom field options
1713 $returnProperties = array($name => 1);
ddca8f33 1714 $query = new CRM_Contact_BAO_Query($params, $returnProperties, $fields);
9e7eeb0f 1715 if (!$skip) {
8cee0c70 1716 $displayValue = CRM_Core_BAO_CustomField::displayValue($customVal, $cfID);
9e7eeb0f 1717 }
6a488035
TO
1718 //Hack since we dont have function to check empty.
1719 //FIXME in 2.3 using crmIsEmptyArray()
1720 $customValue = TRUE;
1721 if (is_array($customVal) && is_array($displayValue)) {
1722 $customValue = array_diff($customVal, $displayValue);
1723 }
1724 //use difference of arrays
1725 if (empty($customValue) || !$customValue) {
1726 $values[$index] = '';
1727 }
1728 else {
1729 $values[$index] = $displayValue;
1730 }
1731 }
1732 }
1733 elseif ($name == 'home_URL' &&
1734 !empty($params[$name])
1735 ) {
1736 $url = CRM_Utils_System::fixURL($params[$name]);
1737 $values[$index] = "<a href=\"$url\">{$params[$name]}</a>";
1738 }
1739 elseif (in_array($name, array(
ddca8f33
TO
1740 'birth_date',
1741 'deceased_date',
21dfd5f5 1742 'participant_register_date',
ddca8f33 1743 ))) {
6a488035
TO
1744 $values[$index] = CRM_Utils_Date::customFormat(CRM_Utils_Date::format($params[$name]));
1745 }
1746 else {
5efc507e 1747 $values[$index] = CRM_Utils_Array::value($name, $params);
6a488035
TO
1748 }
1749 }
1750 }
1751 $profileFields[$name] = $field;
1752 }
1753 }
1754 }
1755
1756 /**
3d469574 1757 * Build the array for Additional participant's information array of primary and additional Ids.
6a488035 1758 *
d4dd1e85
TO
1759 * @param int $participantId
1760 * Id of Primary participant.
1761 * @param array $values
1762 * Key/value event info.
1763 * @param int $contactId
1764 * Contact id of Primary participant.
1765 * @param bool $isTest
1766 * Whether test or live transaction.
1767 * @param bool $isIdsArray
1768 * To return an array of Ids.
77b97be7
EM
1769 *
1770 * @param bool $skipCancel
6a488035 1771 *
a6c01b45
CW
1772 * @return array
1773 * array of Additional participant's info OR array of Ids.
6a488035 1774 */
5396af74 1775 public static function buildCustomProfile(
ddca8f33 1776 $participantId,
6a488035 1777 $values,
0479b4c8
TO
1778 $contactId = NULL,
1779 $isTest = FALSE,
6a488035
TO
1780 $isIdsArray = FALSE,
1781 $skipCancel = TRUE
1782 ) {
1783
1784 $customProfile = $additionalIDs = array();
1785 if (!$participantId) {
1786 CRM_Core_Error::fatal(ts('Cannot find participant ID'));
1787 }
1788
1789 //set Ids of Primary Participant also.
1790 if ($isIdsArray && $contactId) {
1791 $additionalIDs[$participantId] = $contactId;
1792 }
1793
1794 //hack to skip cancelled participants, CRM-4320
1795 $where = "participant.registered_by_id={$participantId}";
1796 if ($skipCancel) {
ddca8f33 1797 $cancelStatusId = 0;
6a488035 1798 $negativeStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Negative'");
ddca8f33 1799 $cancelStatusId = array_search('Cancelled', $negativeStatuses);
6a488035
TO
1800 $where .= " AND participant.status_id != {$cancelStatusId}";
1801 }
1802 $query = "
1803 SELECT participant.id, participant.contact_id
1804 FROM civicrm_participant participant
1805 WHERE {$where}";
1806
1807 $dao = CRM_Core_DAO::executeQuery($query);
1808 while ($dao->fetch()) {
1809 $additionalIDs[$dao->id] = $dao->contact_id;
1810 }
1811
1812 //return if only array is required.
1813 if ($isIdsArray && $contactId) {
1814 return $additionalIDs;
1815 }
1816
1817 $preProfileID = CRM_Utils_Array::value('additional_custom_pre_id', $values);
1818 $postProfileID = CRM_Utils_Array::value('additional_custom_post_id', $values);
1819 //else build array of Additional participant's information.
1820 if (count($additionalIDs)) {
1821 if ($preProfileID || $postProfileID) {
1822 $template = CRM_Core_Smarty::singleton();
1823
1824 $isCustomProfile = TRUE;
ddca8f33
TO
1825 $i = 1;
1826 $title = $groupTitles = array();
6a488035
TO
1827 foreach ($additionalIDs as $pId => $cId) {
1828 //get the params submitted by participant.
1829 $participantParams = CRM_Utils_Array::value($pId, $values['params'], array());
1830
1831 list($profilePre, $groupTitles) = self::buildCustomDisplay($preProfileID,
1832 'additionalCustomPre',
1833 $cId,
1834 $template,
1835 $pId,
1836 $isTest,
1837 $isCustomProfile,
1838 $participantParams
1839 );
1840
1841 if ($profilePre) {
1842 $profile = $profilePre;
1843 // $customProfile[$i] = array_merge( $groupTitles, $customProfile[$i] );
1844 if ($i === 1) {
1845 $title = $groupTitles;
1846 }
1847 }
1848
1849 list($profilePost, $groupTitles) = self::buildCustomDisplay($postProfileID,
1850 'additionalCustomPost',
1851 $cId,
1852 $template,
1853 $pId,
1854 $isTest,
1855 $isCustomProfile,
1856 $participantParams
1857 );
1858
1859 if ($profilePost) {
1860 if (isset($profilePre)) {
1861 $profile = array_merge($profilePre, $profilePost);
1862 if ($i === 1) {
1863 $title = array_merge($title, $groupTitles);
1864 }
1865 }
1866 else {
1867 $profile = $profilePost;
1868 if ($i === 1) {
1869 $title = $groupTitles;
1870 }
1871 }
1872 }
1873 $profiles[] = $profile;
1874 $i++;
1875 }
1876 $customProfile['title'] = $title;
1877 $customProfile['profile'] = $profiles;
1878 }
1879 }
1880
1881 return $customProfile;
1882 }
1883
0cf587a7 1884 /**
5836c35a
CW
1885 * Retrieve all event addresses.
1886 *
0cf587a7
EM
1887 * @return array
1888 */
00be9182 1889 public static function getLocationEvents() {
6a488035 1890 $events = array();
5836c35a
CW
1891 $ret = array(
1892 'loc_block_id',
1893 'loc_block_id.address_id.name',
1894 'loc_block_id.address_id.street_address',
1895 'loc_block_id.address_id.supplemental_address_1',
1896 'loc_block_id.address_id.supplemental_address_2',
1897 'loc_block_id.address_id.supplemental_address_3',
1898 'loc_block_id.address_id.city',
1899 'loc_block_id.address_id.state_province_id.name',
1900 );
6a488035 1901
5836c35a
CW
1902 $result = civicrm_api3('Event', 'get', array(
1903 'check_permissions' => TRUE,
1904 'return' => $ret,
1905 'loc_block_id.address_id' => array('IS NOT NULL' => 1),
942cf6ea
BS
1906 'options' => array(
1907 'limit' => 0,
1908 ),
5836c35a
CW
1909 ));
1910
1911 foreach ($result['values'] as $event) {
1912 $address = '';
1913 foreach ($ret as $field) {
1914 if ($field != 'loc_block_id' && !empty($event[$field])) {
1915 $address .= ($address ? ' :: ' : '') . $event[$field];
1916 }
1917 }
1918 if ($address) {
1919 $events[$event['loc_block_id']] = $address;
1920 }
6a488035
TO
1921 }
1922
5836c35a 1923 return CRM_Utils_Array::asort($events);
6a488035
TO
1924 }
1925
0cf587a7 1926 /**
100fef9d 1927 * @param int $locBlockId
0cf587a7
EM
1928 *
1929 * @return int|null|string
1930 */
00be9182 1931 public static function countEventsUsingLocBlockId($locBlockId) {
6a488035
TO
1932 if (!$locBlockId) {
1933 return 0;
1934 }
1935
1936 $locBlockId = CRM_Utils_Type::escape($locBlockId, 'Integer');
1937
1938 $query = "
1939SELECT count(*) FROM civicrm_event ce
1940WHERE ce.loc_block_id = $locBlockId";
1941
1942 return CRM_Core_DAO::singleValueQuery($query);
1943 }
1944
e2d09ab4 1945 /**
66f9e52b 1946 * Check if event registration is valid according to permissions AND Dates.
e2d09ab4
EM
1947 *
1948 * @param array $values
d4dd1e85 1949 * @param int $eventID
5396af74 1950 * @return bool
e2d09ab4 1951 */
00be9182 1952 public static function validRegistrationRequest($values, $eventID) {
6a488035
TO
1953 // check that the user has permission to register for this event
1954 $hasPermission = CRM_Core_Permission::event(CRM_Core_Permission::EDIT,
e2d09ab4 1955 $eventID, 'register for events'
6a488035
TO
1956 );
1957
1958 return $hasPermission && self::validRegistrationDate($values);
1959 }
1960
0cf587a7
EM
1961 /**
1962 * @param $values
1963 *
1964 * @return bool
1965 */
00be9182 1966 public static function validRegistrationDate(&$values) {
ec7a3e9b
J
1967 // make sure that we are between registration start date and end dates
1968 // and that if the event has ended, registration is still specifically open
6a488035 1969 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_start_date', $values));
ddca8f33
TO
1970 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_end_date', $values));
1971 $eventEnd = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('end_date', $values));
1972 $now = time();
6a488035
TO
1973 $validDate = TRUE;
1974 if ($startDate && $startDate >= $now) {
1975 $validDate = FALSE;
1976 }
ec7a3e9b
J
1977 elseif ($endDate && $endDate < $now) {
1978 $validDate = FALSE;
1979 }
1980 elseif ($eventEnd && $eventEnd < $now && !$endDate) {
6a488035
TO
1981 $validDate = FALSE;
1982 }
1983
1984 return $validDate;
1985 }
1986
1987 /* Function to Show - Hide the Registration Link.
1988 *
d4dd1e85
TO
1989 * @param array $values
1990 * Key/value event info.
a6c01b45
CW
1991 * @return boolean
1992 * true if allow registration otherwise false
6a488035 1993 */
0cf587a7
EM
1994 /**
1995 * @param $values
1996 *
1997 * @return bool
1998 */
00be9182 1999 public static function showHideRegistrationLink($values) {
6a488035 2000
ddca8f33
TO
2001 $session = CRM_Core_Session::singleton();
2002 $contactID = $session->get('userID');
6a488035
TO
2003 $alreadyRegistered = FALSE;
2004
2005 if ($contactID) {
2006 $params = array('contact_id' => $contactID);
2007
2008 if ($eventId = CRM_Utils_Array::value('id', $values['event'])) {
2009 $params['event_id'] = $eventId;
2010 }
2011 if ($roleId = CRM_Utils_Array::value('default_role_id', $values['event'])) {
2012 $params['role_id'] = $roleId;
2013 }
2014 $alreadyRegistered = self::checkRegistration($params);
2015 }
2016
a7488080 2017 if (!empty($values['event']['allow_same_participant_emails']) ||
6a488035
TO
2018 !$alreadyRegistered
2019 ) {
2020 return TRUE;
2021 }
2022 return FALSE;
2023 }
2024
2025 /* Function to check if given contact is already registered.
2026 *
d4dd1e85
TO
2027 * @param array $params
2028 * Key/value participant info.
a6c01b45 2029 * @return boolean
6a488035 2030 */
0cf587a7 2031 /**
c490a46a 2032 * @param array $params
0cf587a7
EM
2033 *
2034 * @return bool
2035 */
00be9182 2036 public static function checkRegistration($params) {
6a488035 2037 $alreadyRegistered = FALSE;
a7488080 2038 if (empty($params['contact_id'])) {
6a488035
TO
2039 return $alreadyRegistered;
2040 }
2041
2042 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
2043
2044 $participant = new CRM_Event_DAO_Participant();
2045 $participant->copyValues($params);
2046
2047 $participant->is_test = CRM_Utils_Array::value('is_test', $params, 0);
2048 $participant->selectAdd();
2049 $participant->selectAdd('status_id');
2050 if ($participant->find(TRUE) && array_key_exists($participant->status_id, $statusTypes)) {
2051 $alreadyRegistered = TRUE;
2052 }
2053
2054 return $alreadyRegistered;
2055 }
2056
2057 /**
66f9e52b 2058 * Make sure that the user has permission to access this event.
6a488035 2059 *
c490a46a 2060 * @param int $eventId
77b97be7
EM
2061 * @param int $type
2062 *
a6c01b45
CW
2063 * @return string
2064 * the permission that the user has (or null)
6a488035 2065 */
00be9182 2066 public static function checkPermission($eventId = NULL, $type = CRM_Core_Permission::VIEW) {
6a488035
TO
2067 static $permissions = NULL;
2068
2069 if (empty($permissions)) {
043d767f 2070 $params = array(
5836c35a
CW
2071 'check_permissions' => 1,
2072 'return' => 'title',
411befaf
BS
2073 'options' => array(
2074 'limit' => 0,
2075 ),
043d767f
ML
2076 );
2077
2078 if ($eventId) {
2079 $params['id'] = $eventId;
2080 }
2081
2082 $result = civicrm_api3('Event', 'get', $params);
5836c35a
CW
2083 $allEvents = CRM_Utils_Array::collect('title', $result['values']);
2084
043d767f
ML
2085 // Search again, but only events created by the user.
2086 $params['created_id'] = 'user_contact_id';
2087 $result = civicrm_api3('Event', 'get', $params);
5836c35a 2088 $createdEvents = CRM_Utils_Array::collect('title', $result['values']);
6a488035
TO
2089
2090 // Note: for a multisite setup, a user with edit all events, can edit all events
2091 // including those from other sites
2092 if (CRM_Core_Permission::check('edit all events')) {
2093 $permissions[CRM_Core_Permission::EDIT] = array_keys($allEvents);
2094 }
2095 else {
d596ca09 2096 $permissions[CRM_Core_Permission::EDIT] = CRM_ACL_API::group(CRM_Core_Permission::EDIT, NULL, 'civicrm_event', $allEvents, $createdEvents);
6a488035
TO
2097 }
2098
2099 if (CRM_Core_Permission::check('edit all events')) {
2100 $permissions[CRM_Core_Permission::VIEW] = array_keys($allEvents);
2101 }
2102 else {
2103 if (CRM_Core_Permission::check('access CiviEvent') &&
2104 CRM_Core_Permission::check('view event participants')
2105 ) {
2106 // use case: allow "view all events" but NOT "edit all events"
2107 // so for a normal site allow users with these two permissions to view all events AND
2108 // at the same time also allow any hook to override if needed.
2109 $createdEvents = array_keys($allEvents);
2110 }
d596ca09 2111 $permissions[CRM_Core_Permission::VIEW] = CRM_ACL_API::group(CRM_Core_Permission::VIEW, NULL, 'civicrm_event', $allEvents, $createdEvents);
6a488035
TO
2112 }
2113
2114 $permissions[CRM_Core_Permission::DELETE] = array();
2115 if (CRM_Core_Permission::check('delete in CiviEvent')) {
2116 // Note: we want to restrict the scope of delete permission to
2117 // events that are editable/viewable (usecase multisite).
2118 // We can remove array_intersect once we have ACL support for delete functionality.
2119 $permissions[CRM_Core_Permission::DELETE] = array_intersect($permissions[CRM_Core_Permission::EDIT],
2120 $permissions[CRM_Core_Permission::VIEW]
2121 );
2122 }
2123 }
2124
2125 if ($eventId) {
2126 return in_array($eventId, $permissions[$type]) ? TRUE : FALSE;
2127 }
2128
2129 return $permissions;
2130 }
2131
2132 /**
2133 * Build From Email as the combination of all the email ids of the logged in user,
2134 * the domain email id and the email id configured for the event
2135 *
d4dd1e85
TO
2136 * @param int $eventId
2137 * The id of the event.
6a488035 2138 *
a6c01b45
CW
2139 * @return array
2140 * an array of email ids
6a488035 2141 */
00be9182 2142 public static function getFromEmailIds($eventId = NULL) {
6a488035
TO
2143 $fromEmailValues['from_email_id'] = CRM_Core_BAO_Email::getFromEmail();
2144
2145 if ($eventId) {
2146 // add the email id configured for the event
ddca8f33 2147 $params = array('id' => $eventId);
6a488035 2148 $returnProperties = array('confirm_from_name', 'confirm_from_email', 'cc_confirm', 'bcc_confirm');
ddca8f33 2149 $eventEmail = array();
6a488035
TO
2150
2151 CRM_Core_DAO::commonRetrieve('CRM_Event_DAO_Event', $params, $eventEmail, $returnProperties);
8cc574cf 2152 if (!empty($eventEmail['confirm_from_name']) && !empty($eventEmail['confirm_from_email'])) {
6a488035
TO
2153 $eventEmailId = "{$eventEmail['confirm_from_name']} <{$eventEmail['confirm_from_email']}>";
2154
2155 $fromEmailValues['from_email_id'][$eventEmailId] = htmlspecialchars($eventEmailId);
0479b4c8 2156 $fromEmailId = array(
ddca8f33 2157 'cc' => CRM_Utils_Array::value('cc_confirm', $eventEmail),
6a488035
TO
2158 'bcc' => CRM_Utils_Array::value('bcc_confirm', $eventEmail),
2159 );
2160 $fromEmailValues = array_merge($fromEmailValues, $fromEmailId);
2161 }
2162 }
2163
2164 return $fromEmailValues;
2165 }
2166
2167 /**
100fef9d 2168 * Calculate event total seats occupied.
6a488035 2169 *
d4dd1e85
TO
2170 * @param int $eventId
2171 * Event id.
2172 * @param sting $extraWhereClause
2173 * Extra filter on participants.
6a488035 2174 *
a6c01b45
CW
2175 * @return int
2176 * event total seats w/ given criteria.
6a488035 2177 */
00be9182 2178 public static function eventTotalSeats($eventId, $extraWhereClause = NULL) {
6a488035
TO
2179 if (empty($eventId)) {
2180 return 0;
2181 }
2182
2183 $extraWhereClause = trim($extraWhereClause);
2184 if (!empty($extraWhereClause)) {
2185 $extraWhereClause = " AND ( {$extraWhereClause} )";
2186 }
2187
2188 //event seats calculation :
2189 //1. consider event seat as a single when participant does not have line item.
2190 //2. consider event seat as a single when participant has line items but does not
2191 // have count for corresponding price field value ( ie price field value does not carry any seat )
2192 //3. consider event seat as a sum of all seats from line items in case price field value carries count.
2193
2194 $query = "
2195 SELECT IF ( SUM( value.count*lineItem.qty ),
2196 SUM( value.count*lineItem.qty ) +
2197 COUNT( DISTINCT participant.id ) -
2198 COUNT( DISTINCT IF ( value.count, participant.id, NULL ) ),
2199 COUNT( DISTINCT participant.id ) )
2200 FROM civicrm_participant participant
2201INNER JOIN civicrm_contact contact ON ( contact.id = participant.contact_id AND contact.is_deleted = 0 )
2202INNER JOIN civicrm_event event ON ( event.id = participant.event_id )
2203LEFT JOIN civicrm_line_item lineItem ON ( lineItem.entity_id = participant.id
2204 AND lineItem.entity_table = 'civicrm_participant' )
2205LEFT JOIN civicrm_price_field_value value ON ( value.id = lineItem.price_field_value_id AND value.count )
2206 WHERE ( participant.event_id = %1 )
4962bc92 2207 AND participant.is_test = 0
6a488035
TO
2208 {$extraWhereClause}
2209 GROUP BY participant.event_id";
2210
0479b4c8 2211 return (int) CRM_Core_DAO::singleValueQuery($query, array(1 => array($eventId, 'Positive')));
6a488035
TO
2212 }
2213
c490a46a 2214 /**
66f9e52b 2215 * Retrieve event template default values to be set.
6a488035
TO
2216 * as default values for current new event.
2217 *
d4dd1e85
TO
2218 * @param int $templateId
2219 * Event template id.
6a488035 2220 *
a6c01b45 2221 * @return array
16b10e64 2222 * Array of custom data defaults.
0cf587a7 2223 */
00be9182 2224 public static function getTemplateDefaultValues($templateId) {
6a488035
TO
2225 $defaults = array();
2226 if (!$templateId) {
2227 return $defaults;
2228 }
2229
2230 $templateParams = array('id' => $templateId);
2231 CRM_Event_BAO_Event::retrieve($templateParams, $defaults);
2232 $fieldsToExclude = array(
2233 'id',
2234 'default_fee_id',
2235 'default_discount_fee_id',
2236 'created_date',
2237 'created_id',
2238 'is_template',
2239 'template_title',
2240 );
2241 $defaults = array_diff_key($defaults, array_flip($fieldsToExclude));
2242 return $defaults;
2243 }
2244
0cf587a7 2245 /**
100fef9d 2246 * @param int $event_id
0cf587a7
EM
2247 *
2248 * @return object
2249 */
00be9182 2250 public static function get_sub_events($event_id) {
6a488035
TO
2251 $params = array('parent_event_id' => $event_id);
2252 $defaults = array();
2253 return CRM_Event_BAO_Event::retrieve($params, $defaults);
2254 }
49f68a22 2255
c490a46a 2256 /**
66f9e52b 2257 * Update the Campaign Id of all the participants of the given event.
49f68a22 2258 *
d4dd1e85
TO
2259 * @param int $eventID
2260 * Event id.
2261 * @param int $eventCampaignID
2262 * Campaign id of that event.
0cf587a7 2263 */
00be9182 2264 public static function updateParticipantCampaignID($eventID, $eventCampaignID) {
49f68a22
DL
2265 $params = array();
2266 $params[1] = array($eventID, 'Integer');
2267
ddca8f33 2268 if (empty($eventCampaignID)) {
49f68a22
DL
2269 $query = "UPDATE civicrm_participant SET campaign_id = NULL WHERE event_id = %1";
2270 }
2271 else {
2272 $query = "UPDATE civicrm_participant SET campaign_id = %2 WHERE event_id = %1";
2273 $params[2] = array($eventCampaignID, 'Integer');
2274 }
2275 CRM_Core_DAO::executeQuery($query, $params);
2276 }
e1462487
CW
2277
2278 /**
2279 * Get options for a given field.
2280 * @see CRM_Core_DAO::buildOptions
2281 *
d4dd1e85 2282 * @param string $fieldName
ddca8f33
TO
2283 * @param string $context : @see CRM_Core_DAO::buildOptionsContext
2284 * @param array $props : whatever is known about this dao object
e1462487
CW
2285 *
2286 * @return array|bool
2287 */
2288 public static function buildOptions($fieldName, $context = NULL, $props = array()) {
2289 $params = array();
2290 // Special logic for fields whose options depend on context or properties
2291 switch ($fieldName) {
2292 case 'financial_type_id':
2293 // Fixme - this is going to ignore context, better to get conditions, add params, and call PseudoConstant::get
2294 return CRM_Financial_BAO_FinancialType::getIncomeFinancialType();
0479b4c8 2295
5396af74 2296 break;
e1462487
CW
2297 }
2298 return CRM_Core_PseudoConstant::get(__CLASS__, $fieldName, $params, $context);
2299 }
d75f2f47
EM
2300
2301}