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