Merge pull request #11275 from civicrm/4.7.28-rc
[civicrm-core.git] / CRM / Event / BAO / Event.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2017
32 */
33 class CRM_Event_BAO_Event extends CRM_Event_DAO_Event {
34
35 /**
36 * Class constructor.
37 */
38 public function __construct() {
39 parent::__construct();
40 }
41
42 /**
43 * Fetch object based on array of properties.
44 *
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.
49 *
50 * @return CRM_Event_DAO_Event
51 */
52 public static function retrieve(&$params, &$defaults) {
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 /**
63 * Update the is_active flag in the db.
64 *
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.
69 *
70 * @return Object
71 * DAO object on success, null otherwise
72 */
73 public static function setIsActive($id, $is_active) {
74 return CRM_Core_DAO::setFieldValue('CRM_Event_DAO_Event', $id, 'is_active', $is_active);
75 }
76
77 /**
78 * Add the event.
79 *
80 * @param array $params
81 * Reference array contains the values submitted by the form.
82 *
83 * @return CRM_Event_DAO_Event
84 */
85 public static function add(&$params) {
86 CRM_Utils_System::flushCache();
87 $financialTypeId = NULL;
88 if (!empty($params['id'])) {
89 CRM_Utils_Hook::pre('edit', 'Event', $params['id'], $params);
90 if (empty($params['skipFinancialType'])) {
91 $financialTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $params['id'], 'financial_type_id');
92 }
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
103 if (!empty($params['id'])) {
104 CRM_Utils_Hook::post('edit', 'Event', $event->id, $event);
105 }
106 else {
107 CRM_Utils_Hook::post('create', 'Event', $event->id, $event);
108 }
109 if ($financialTypeId && !empty($params['financial_type_id']) && $financialTypeId != $params['financial_type_id']) {
110 CRM_Price_BAO_PriceFieldValue::updateFinancialType($params['id'], 'civicrm_event', $params['financial_type_id']);
111 }
112 return $result;
113 }
114
115 /**
116 * Create the event.
117 *
118 * @param array $params
119 * Reference array contains the values submitted by the form.
120 *
121 * @return object
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);
139 CRM_Price_BAO_PriceSet::setPriceSets($params, $event, 'event');
140 if (is_a($event, 'CRM_Core_Error')) {
141 CRM_Core_DAO::transaction('ROLLBACK');
142 return $event;
143 }
144
145 $contactId = CRM_Core_Session::getLoggedInContactID();
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
160 if (!empty($params['custom']) &&
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 /**
172 * Delete the event.
173 *
174 * @param int $id
175 * Event id.
176 *
177 * @return mixed|null
178 */
179 public static function del($id) {
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) {
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 ));
194 }
195
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
210 // price set cleanup, CRM-5527
211 CRM_Price_BAO_PriceSet::removeFrom('civicrm_event', $id);
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 /**
232 * Delete the location block associated with an event.
233 *
234 * Function checks that it is not being used by any other event.
235 *
236 * @param int $locBlockId
237 * Location block id to be deleted.
238 * @param int $eventId
239 * Event with which loc block is associated.
240 */
241 public static function deleteEventLocBlock($locBlockId, $eventId = NULL) {
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 /**
256 * Get current/future Events.
257 *
258 * @param int $all
259 * 0 returns current and future events.
260 * 1 if events all are required
261 * 2 returns events since 3 months ago
262 * @param int|array $id single int event id or array of multiple event ids to return
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.
267 * @param bool $titleOnly
268 * true if you need only title not appended with start date
269 *
270 * @return array
271 */
272 public static function getEvents(
273 $all = 0,
274 $id = NULL,
275 $isActive = TRUE,
276 $checkPermission = TRUE,
277 $titleOnly = FALSE
278 ) {
279 $query = "
280 SELECT `id`, `title`, `start_date`
281 FROM `civicrm_event`
282 WHERE ( civicrm_event.is_template IS NULL OR civicrm_event.is_template = 0 )";
283
284 if (!empty($id)) {
285 $op = is_array($id) ? 'IN' : '=';
286 $where = CRM_Contact_BAO_Query::buildClause('id', $op, $id);
287 $query .= " AND {$where}";
288 }
289 elseif ($all == 0) {
290 // find only events ending in the future
291 $endDate = date('YmdHis');
292 $query .= "
293 AND ( `end_date` >= {$endDate} OR
294 (
295 ( end_date IS NULL OR end_date = '' ) AND start_date >= {$endDate}
296 )
297 )";
298 }
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 }
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 ) {
318 $events[$dao->id] = $dao->title;
319 if (!$titleOnly) {
320 $events[$dao->id] .= ' - ' . CRM_Utils_Date::customFormat($dao->start_date);
321 }
322 }
323 }
324
325 return $events;
326 }
327
328 /**
329 * Get events Summary.
330 *
331 * @return array
332 * Array of event summary values
333 */
334 public static function getEventSummary() {
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 = "
353 SELECT count(id) as total_events
354 FROM civicrm_event
355 WHERE 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.
373 $cpstObject = new CRM_Event_DAO_ParticipantStatusType();
374 $cpst = $cpstObject->getTableName();
375 $query = "SELECT id, name, label, class FROM $cpst";
376 $status = CRM_Core_DAO::executeQuery($query);
377 $statusValues = array();
378 while ($status->fetch()) {
379 $statusValues[$status->id]['id'] = $status->id;
380 $statusValues[$status->id]['name'] = $status->name;
381 $statusValues[$status->id]['label'] = $status->label;
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 }
392 // Get the event summary display preferences
393 $show_max_events = Civi::settings()->get('show_events');
394 // show all events if show_events is set to a negative value
395 if (isset($show_max_events) && $show_max_events >= 0) {
396 $event_summary_limit = "LIMIT 0, $show_max_events";
397 }
398 else {
399 $event_summary_limit = "";
400 }
401
402 $query = "
403 SELECT 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,
408 civicrm_pcp_block.id as is_pcp_enabled,
409 civicrm_recurring_entity.parent_id as is_repeating_event
410 FROM civicrm_event
411 LEFT JOIN civicrm_option_value ON (
412 civicrm_event.event_type_id = civicrm_option_value.value AND
413 civicrm_option_value.option_group_id = %1 )
414 LEFT JOIN civicrm_tell_friend ON ( civicrm_tell_friend.entity_id = civicrm_event.id AND civicrm_tell_friend.entity_table = 'civicrm_event' )
415 LEFT JOIN civicrm_pcp_block ON ( civicrm_pcp_block.entity_id = civicrm_event.id AND civicrm_pcp_block.entity_table = 'civicrm_event')
416 LEFT JOIN civicrm_recurring_entity ON ( civicrm_event.id = civicrm_recurring_entity.entity_id AND civicrm_recurring_entity.entity_table = 'civicrm_event' )
417 WHERE 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
421 ORDER BY civicrm_event.start_date ASC
422 $event_summary_limit
423 ";
424 $eventParticipant = array();
425
426 $properties = array(
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',
436 'notCountedDueToRole' => 'notCountedDueToRole',
437 'notCountedDueToStatus' => 'notCountedDueToStatus',
438 'notCountedParticipants' => 'notCountedParticipants',
439 );
440
441 $params = array(1 => array($optionGroupId, 'Integer'));
442 $mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
443 'id' => CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID,
444 )));
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) {
462 $values = array();
463 $ids = array();
464 $params = array('entity_id' => $dao->id, 'entity_table' => 'civicrm_event');
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])) ||
467 (
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;
477 if (is_array($permissions[CRM_Core_Permission::EDIT])
478 && in_array($dao->id, $permissions[CRM_Core_Permission::EDIT])) {
479 $eventSummary['events'][$dao->id]['configure'] = CRM_Utils_System::url('civicrm/admin/event', "action=update&id=$dao->id&reset=1");
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;
549 $eventSummary['events'][$dao->id]['reminder'] = CRM_Core_BAO_ActionSchedule::isConfigured($dao->id, $mapping->getId());
550 $eventSummary['events'][$dao->id]['is_repeating_event'] = $dao->is_repeating_event;
551
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";
561 $statusInfo = array(
562 'url' => CRM_Utils_System::url('civicrm/event/search', $urlString),
563 'name' => $statusValue['name'],
564 'label' => $statusValue['label'],
565 'count' => $statusCount,
566 );
567 $eventSummary['events'][$dao->id]['statuses'][$class][] = $statusInfo;
568 }
569 }
570 }
571
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');
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 /**
589 * Get participant count.
590 *
591 * @param int $eventId
592 * @param bool $considerStatus consider status for participant count.
593 * Consider status for participant count.
594 * @param bool $status counted participant.
595 * Consider counted participant.
596 * @param bool $considerRole consider role for participant count.
597 * Consider role for participant count.
598 * @param bool $role consider counted( is filter role) participant.
599 * Consider counted( is filter role) participant.
600 *
601 * @return array
602 * array with count of participants for each event based on status/role
603 */
604 public static function getParticipantCount(
605 $eventId,
606 $considerStatus = TRUE,
607 $status = TRUE,
608 $considerRole = TRUE,
609 $role = TRUE
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 }
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
645 $clause[] = "participant.role_id {$roleClause} ( '" . implode("', '", $escapedRoles) . "' ) ";
646 }
647 }
648
649 $sqlClause = '';
650 if (!empty($clause)) {
651 $sqlClause = ' ( ' . implode($operator, $clause) . ' )';
652 }
653
654 return self::eventTotalSeats($eventId, $sqlClause);
655 }
656
657 /**
658 * Get the information to map a event.
659 *
660 * @param int $id
661 * For which we want map info.
662 *
663 * @return null|string
664 * title of the event
665 */
666 public static function &getMapInfo(&$id) {
667
668 $sql = "
669 SELECT
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
681 FROM
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 )
688 WHERE 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);
709 $location['address'] = str_replace(array(
710 "\r",
711 "\n",
712 ), '', addslashes(nl2br($addressValues['address'][1]['display_text'])));
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 /**
725 * Get the complete information for one or more events.
726 *
727 * @param date $start
728 * Get events with start date >= this date.
729 * @param int $type Get events on the a specific event type (by event_type_id).
730 * Get events on the a specific event type (by event_type_id).
731 * @param int $eventId Return a single event - by event id.
732 * Return a single event - by event id.
733 * @param date $end
734 * Also get events with end date >= this date.
735 * @param bool $onlyPublic Include public events only, default TRUE.
736 * Include public events only, default TRUE.
737 *
738 * @return array
739 * array of all the events that are searched
740 */
741 public static function &getCompleteInfo(
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
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
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
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 = "
790 SELECT
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,
808 civicrm_address.supplemental_address_3 as supplemental_address_3,
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
814 FROM civicrm_event
815 LEFT JOIN civicrm_loc_block ON civicrm_event.loc_block_id = civicrm_loc_block.id
816 LEFT JOIN civicrm_address ON civicrm_loc_block.address_id = civicrm_address.id
817 LEFT JOIN civicrm_state_province ON civicrm_address.state_province_id = civicrm_state_province.id
818 LEFT JOIN civicrm_country ON civicrm_address.country_id = civicrm_country.id
819 LEFT JOIN civicrm_email ON civicrm_loc_block.email_id = civicrm_email.id
820 LEFT JOIN civicrm_option_value ON (
821 civicrm_event.event_type_id = civicrm_option_value.value AND
822 civicrm_option_value.option_group_id = %1 )
823 WHERE civicrm_event.is_active = 1
824 AND (is_template = 0 OR is_template IS NULL)
825 {$publicCondition}
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
837 $params = array(1 => array($optionGroupId, 'Integer'));
838 $dao = CRM_Core_DAO::executeQuery($query, $params);
839 $all = array();
840 $config = CRM_Core_Config::singleton();
841
842 $baseURL = parse_url($config->userFrameworkBaseURL);
843 $url = "@" . $baseURL['host'];
844 if (!empty($baseURL['path'])) {
845 $url .= substr($baseURL['path'], 0, -1);
846 }
847
848 // check 'view event info' permission
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
855 $permissions = CRM_Core_Permission::event(CRM_Core_Permission::VIEW);
856
857 // check if we're in shopping cart mode for events
858 $enable_cart = Civi::settings()->get('enable_cart');
859 if ($enable_cart) {
860 }
861 while ($dao->fetch()) {
862 if (!empty($permissions) && in_array($dao->event_id, $permissions)) {
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,
887 'supplemental_address_3' => $dao->supplemental_address_3,
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 /**
916 * Make a copy of a Event.
917 *
918 * Include all the fields in the event Wizard.
919 *
920 * @param int $id
921 * The event id to copy.
922 * boolean $afterCreate call to copy after the create function
923 * @param null $newEvent
924 * @param bool $afterCreate
925 *
926 * @return CRM_Event_DAO_Event
927 */
928 public static function copy($id, $newEvent = NULL, $afterCreate = FALSE) {
929
930 $eventValues = array();
931
932 //get the require event values.
933 $eventParams = array('id' => $id);
934 $returnProperties = array(
935 'loc_block_id',
936 'is_show_location',
937 'default_fee_id',
938 'default_discount_fee_id',
939 'is_template',
940 );
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
947 $fieldsFix = ($afterCreate) ? array() : array('prefix' => array('title' => ts('Copy of') . ' '));
948 if (empty($eventValues['is_show_location'])) {
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),
959 array(
960 'loc_block_id' =>
961 ($locBlockId) ? $locBlockId : NULL,
962 ),
963 $fieldsFix
964 );
965 }
966 CRM_Price_BAO_PriceSet::copyPriceSet('civicrm_event', $id, $copyEvent->id);
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
992 $oldMapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
993 'id' => ($eventValues['is_template'] ? CRM_Event_ActionMapping::EVENT_TPL_MAPPING_ID : CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID),
994 )));
995 $copyMapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
996 'id' => ($copyEvent->is_template == 1 ? CRM_Event_ActionMapping::EVENT_TPL_MAPPING_ID : CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID),
997 )));
998 $copyReminder = &CRM_Core_DAO::copyGeneric('CRM_Core_DAO_ActionSchedule',
999 array('entity_value' => $id, 'mapping_id' => $oldMapping->getId()),
1000 array('entity_value' => $copyEvent->id, 'mapping_id' => $copyMapping->getId())
1001 );
1002
1003 if (!$afterCreate) {
1004 // CRM-19302
1005 self::copyCustomFields($id, $copyEvent->id);
1006 }
1007
1008 $copyEvent->save();
1009
1010 CRM_Utils_System::flushCache();
1011 if (!$afterCreate) {
1012 CRM_Utils_Hook::copy('Event', $copyEvent);
1013 }
1014 return $copyEvent;
1015 }
1016
1017 /**
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,
1020 * breaking download URL's for the old event.
1021 *
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');
1029
1030 // If custom values present, we copy them
1031 if (!empty($customValues)) {
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);
1036
1037 // Build array of File type fields
1038 while ($result->fetch()) {
1039 $htmlType[] = $result->id;
1040 }
1041
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(
1049 'name' => CRM_Utils_File::duplicate($fileValues[0]),
1050 'type' => $fileValues[1],
1051 );
1052 }
1053 // Handle other types
1054 else {
1055 $customParams["custom_{$field}_-1"] = $value;
1056 }
1057 }
1058 }
1059
1060 // Save Custom Fields for new Event
1061 CRM_Core_BAO_CustomValueTable::postProcess($customParams, 'civicrm_event', $newCopyID, 'Event');
1062 }
1063
1064 // copy activity attachments ( if any )
1065 CRM_Core_BAO_File::copyEntityFile('civicrm_event', $oldEventID, 'civicrm_event', $newCopyID);
1066 }
1067
1068 /**
1069 * This is sometimes called in a loop (during event search).
1070 *
1071 * We cache the values to prevent repeated calls to the db.
1072 *
1073 * @param int $id
1074 *
1075 * @return bool
1076 */
1077 public static function isMonetary($id) {
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 /**
1089 * This is sometimes called in a loop (during event search).
1090 *
1091 * We cache the values to prevent repeated calls to the db.
1092 *
1093 * @param int $id
1094 *
1095 * @return bool
1096 */
1097 public static function usesPriceSet($id) {
1098 static $usesPriceSet = array();
1099 if (!array_key_exists($id, $usesPriceSet)) {
1100 $usesPriceSet[$id] = CRM_Price_BAO_PriceSet::getFor('civicrm_event', $id);
1101 }
1102 return $usesPriceSet[$id];
1103 }
1104
1105 /**
1106 * Send e-mails.
1107 *
1108 * @param int $contactID
1109 * @param array $values
1110 * @param int $participantId
1111 * @param bool $isTest
1112 * @param bool $returnMessageText
1113 */
1114 public static function sendMail($contactID, &$values, $participantId, $isTest = FALSE, $returnMessageText = FALSE) {
1115
1116 $template = CRM_Core_Smarty::singleton();
1117 $gIds = array(
1118 'custom_pre_id' => $values['custom_pre_id'],
1119 'custom_post_id' => $values['custom_post_id'],
1120 );
1121
1122 //get the params submitted by participant.
1123 $participantParams = CRM_Utils_Array::value($participantId, $values['params'], array());
1124
1125 if (!$returnMessageText) {
1126 //send notification email if field values are set (CRM-1941)
1127 foreach ($gIds as $key => $gIdValues) {
1128 if ($gIdValues) {
1129 if (!is_array($gIdValues)) {
1130 $gIdValues = array($gIdValues);
1131 }
1132
1133 foreach ($gIdValues as $gId) {
1134 $email = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $gId, 'notify');
1135 if ($email) {
1136 //get values of corresponding profile fields for notification
1137 list($profileValues) = self::buildCustomDisplay($gId,
1138 NULL,
1139 $contactID,
1140 $template,
1141 $participantId,
1142 $isTest,
1143 TRUE,
1144 $participantParams
1145 );
1146 list($profileValues) = $profileValues;
1147 $val = array(
1148 'id' => $gId,
1149 'values' => $profileValues,
1150 'email' => $email,
1151 );
1152 CRM_Core_BAO_UFGroup::commonSendMail($contactID, $val);
1153 }
1154 }
1155 }
1156 }
1157 }
1158
1159 if ($values['event']['is_email_confirm'] || $returnMessageText) {
1160 list($displayName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactID);
1161
1162 //send email only when email is present
1163 if (isset($email) || $returnMessageText) {
1164 $preProfileID = CRM_Utils_Array::value('custom_pre_id', $values);
1165 $postProfileID = CRM_Utils_Array::value('custom_post_id', $values);
1166
1167 if (!empty($values['params']['additionalParticipant'])) {
1168 $preProfileID = CRM_Utils_Array::value('additional_custom_pre_id', $values, $preProfileID);
1169 $postProfileID = CRM_Utils_Array::value('additional_custom_post_id', $values, $postProfileID);
1170 }
1171
1172 self::buildCustomDisplay($preProfileID,
1173 'customPre',
1174 $contactID,
1175 $template,
1176 $participantId,
1177 $isTest,
1178 NULL,
1179 $participantParams
1180 );
1181
1182 self::buildCustomDisplay($postProfileID,
1183 'customPost',
1184 $contactID,
1185 $template,
1186 $participantId,
1187 $isTest,
1188 NULL,
1189 $participantParams
1190 );
1191
1192 $sessions = CRM_Event_Cart_BAO_Conference::get_participant_sessions($participantId);
1193
1194 $tplParams = array_merge($values, $participantParams, array(
1195 'email' => $email,
1196 'confirm_email_text' => CRM_Utils_Array::value('confirm_email_text', $values['event']),
1197 'isShowLocation' => CRM_Utils_Array::value('is_show_location', $values['event']),
1198 // The concept of contributeMode is deprecated.
1199 'contributeMode' => CRM_Utils_Array::value('contributeMode', $template->_tpl_vars),
1200 'participantID' => $participantId,
1201 'conference_sessions' => $sessions,
1202 'credit_card_number' =>
1203 CRM_Utils_System::mungeCreditCard(
1204 CRM_Utils_Array::value('credit_card_number', $participantParams)),
1205 'credit_card_exp_date' =>
1206 CRM_Utils_Date::mysqlToIso(
1207 CRM_Utils_Date::format(
1208 CRM_Utils_Array::value('credit_card_exp_date', $participantParams))),
1209 ));
1210
1211 // CRM-13890 : NOTE wait list condition need to be given so that
1212 // wait list message is shown properly in email i.e. WRT online event registration template
1213 if (empty($tplParams['participant_status']) && empty($values['params']['isOnWaitlist'])) {
1214 $statusId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $participantId, 'status_id', 'id', TRUE);
1215 $tplParams['participant_status'] = CRM_Event_PseudoConstant::participantStatus($statusId, NULL, 'label');
1216 }
1217 //CRM-15754 - if participant_status contains status ID
1218 elseif (!empty($tplParams['participant_status']) && CRM_Utils_Rule::integer($tplParams['participant_status'])) {
1219 $tplParams['participant_status'] = CRM_Event_PseudoConstant::participantStatus($tplParams['participant_status'], NULL, 'label');
1220 }
1221
1222 $sendTemplateParams = array(
1223 'groupName' => 'msg_tpl_workflow_event',
1224 'valueName' => 'event_online_receipt',
1225 'contactId' => $contactID,
1226 'isTest' => $isTest,
1227 'tplParams' => $tplParams,
1228 'PDFFilename' => ts('confirmation') . '.pdf',
1229 );
1230
1231 // address required during receipt processing (pdf and email receipt)
1232 if ($displayAddress = CRM_Utils_Array::value('address', $values)) {
1233 $sendTemplateParams['tplParams']['address'] = $displayAddress;
1234 // The concept of contributeMode is deprecated.
1235 $sendTemplateParams['tplParams']['contributeMode'] = NULL;
1236 }
1237
1238 // set lineItem details
1239 if ($lineItem = CRM_Utils_Array::value('lineItem', $values)) {
1240 // check if additional participant, if so filter only to relevant ones
1241 // CRM-9902
1242 if (!empty($values['params']['additionalParticipant'])) {
1243 $ownLineItems = array();
1244 foreach ($lineItem as $liKey => $liValue) {
1245 $firstElement = array_pop($liValue);
1246 if ($firstElement['entity_id'] == $participantId) {
1247 $ownLineItems[0] = $lineItem[$liKey];
1248 break;
1249 }
1250 }
1251 if (!empty($ownLineItems)) {
1252 $sendTemplateParams['tplParams']['lineItem'] = $ownLineItems;
1253 }
1254 }
1255 else {
1256 $sendTemplateParams['tplParams']['lineItem'] = $lineItem;
1257 }
1258 }
1259
1260 if ($returnMessageText) {
1261 list($sent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
1262 return array(
1263 'subject' => $subject,
1264 'body' => $message,
1265 'to' => $displayName,
1266 'html' => $html,
1267 );
1268 }
1269 else {
1270 $sendTemplateParams['from'] = CRM_Utils_Array::value('confirm_from_name', $values['event']) . " <" . CRM_Utils_Array::value('confirm_from_email', $values['event']) . ">";
1271 $sendTemplateParams['toName'] = $displayName;
1272 $sendTemplateParams['toEmail'] = $email;
1273 $sendTemplateParams['autoSubmitted'] = TRUE;
1274 $sendTemplateParams['cc'] = CRM_Utils_Array::value('cc_confirm',
1275 $values['event']
1276 );
1277 $sendTemplateParams['bcc'] = CRM_Utils_Array::value('bcc_confirm',
1278 $values['event']
1279 );
1280 // append invoice pdf to email
1281 $template = CRM_Core_Smarty::singleton();
1282 $taxAmt = $template->get_template_vars('totalTaxAmount');
1283 $prefixValue = Civi::settings()->get('contribution_invoice_settings');
1284 $invoicing = CRM_Utils_Array::value('invoicing', $prefixValue);
1285 if (isset($invoicing) && isset($prefixValue['is_email_pdf']) && !empty($values['contributionId'])) {
1286 $sendTemplateParams['isEmailPdf'] = TRUE;
1287 $sendTemplateParams['contributionId'] = $values['contributionId'];
1288 }
1289 CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
1290 }
1291 }
1292 }
1293 }
1294
1295 /**
1296 * Add the custom fields OR array of participant's profile info.
1297 *
1298 * @param int $id
1299 * @param string $name
1300 * @param int $cid
1301 * @param string $template
1302 * @param int $participantId
1303 * @param bool $isTest
1304 * @param bool $isCustomProfile
1305 * @param array $participantParams
1306 *
1307 * @return array|null
1308 */
1309 public static function buildCustomDisplay(
1310 $id,
1311 $name,
1312 $cid,
1313 &$template,
1314 $participantId,
1315 $isTest,
1316 $isCustomProfile = FALSE,
1317 $participantParams = array()
1318 ) {
1319 if (!$id) {
1320 return array(NULL, NULL);
1321 }
1322
1323 if (!is_array($id)) {
1324 $id = CRM_Utils_Type::escape($id, 'Positive');
1325 $profileIds = array($id);
1326 }
1327 else {
1328 $profileIds = $id;
1329 }
1330
1331 $val = $groupTitles = NULL;
1332 foreach ($profileIds as $gid) {
1333 if (CRM_Core_BAO_UFGroup::filterUFGroups($gid, $cid)) {
1334 $values = array();
1335 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, CRM_Core_Action::VIEW,
1336 NULL, NULL, FALSE, NULL,
1337 FALSE, NULL, CRM_Core_Permission::CREATE,
1338 'field_name', TRUE
1339 );
1340
1341 //this condition is added, since same contact can have multiple event registrations..
1342 $params = array(array('participant_id', '=', $participantId, 0, 0));
1343
1344 //add participant id
1345 $fields['participant_id'] = array(
1346 'name' => 'participant_id',
1347 'title' => ts('Participant ID'),
1348 );
1349 //check whether its a text drive
1350 if ($isTest) {
1351 $params[] = array('participant_test', '=', 1, 0, 0);
1352 }
1353
1354 //display campaign on thankyou page.
1355 if (array_key_exists('participant_campaign_id', $fields)) {
1356 if ($participantId) {
1357 $campaignId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
1358 $participantId,
1359 'campaign_id'
1360 );
1361 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
1362 $values[$fields['participant_campaign_id']['title']] = CRM_Utils_Array::value($campaignId,
1363 $campaigns
1364 );
1365 }
1366 unset($fields['participant_campaign_id']);
1367 }
1368
1369 $groupTitle = NULL;
1370 foreach ($fields as $k => $v) {
1371 if (!$groupTitle) {
1372 $groupTitle = $v['groupTitle'];
1373 }
1374 // suppress all file fields from display
1375 if (
1376 CRM_Utils_Array::value('data_type', $v, '') == 'File' ||
1377 CRM_Utils_Array::value('name', $v, '') == 'image_URL' ||
1378 CRM_Utils_Array::value('field_type', $v) == 'Formatting'
1379 ) {
1380 unset($fields[$k]);
1381 }
1382 }
1383
1384 if ($groupTitle) {
1385 $groupTitles[] = $groupTitle;
1386 }
1387 //display profile groups those are subscribed by participant.
1388 if (($groups = CRM_Utils_Array::value('group', $participantParams)) &&
1389 is_array($groups)
1390 ) {
1391 $grpIds = array();
1392 foreach ($groups as $grpId => $isSelected) {
1393 if ($isSelected) {
1394 $grpIds[] = $grpId;
1395 }
1396 }
1397 if (!empty($grpIds)) {
1398 //get the group titles.
1399 $grpTitles = array();
1400 $query = 'SELECT title FROM civicrm_group where id IN ( ' . implode(',', $grpIds) . ' )';
1401 $grp = CRM_Core_DAO::executeQuery($query);
1402 while ($grp->fetch()) {
1403 $grpTitles[] = $grp->title;
1404 }
1405 if (!empty($grpTitles) &&
1406 CRM_Utils_Array::value('title', CRM_Utils_Array::value('group', $fields))
1407 ) {
1408 $values[$fields['group']['title']] = implode(', ', $grpTitles);
1409 }
1410 unset($fields['group']);
1411 }
1412 }
1413
1414 CRM_Core_BAO_UFGroup::getValues($cid, $fields, $values, FALSE, $params);
1415
1416 if (isset($fields['participant_status_id']['title']) &&
1417 isset($values[$fields['participant_status_id']['title']]) &&
1418 is_numeric($values[$fields['participant_status_id']['title']])
1419 ) {
1420 $status = array();
1421 $status = CRM_Event_PseudoConstant::participantStatus();
1422 $values[$fields['participant_status_id']['title']] = $status[$values[$fields['participant_status_id']['title']]];
1423 }
1424
1425 if (isset($fields['participant_role_id']['title']) &&
1426 isset($values[$fields['participant_role_id']['title']]) &&
1427 is_numeric($values[$fields['participant_role_id']['title']])
1428 ) {
1429 $roles = array();
1430 $roles = CRM_Event_PseudoConstant::participantRole();
1431 $values[$fields['participant_role_id']['title']] = $roles[$values[$fields['participant_role_id']['title']]];
1432 }
1433
1434 if (isset($fields['participant_register_date']['title']) &&
1435 isset($values[$fields['participant_register_date']['title']])
1436 ) {
1437 $values[$fields['participant_register_date']['title']] = CRM_Utils_Date::customFormat($values[$fields['participant_register_date']['title']]);
1438 }
1439
1440 //handle fee_level for price set
1441 if (isset($fields['participant_fee_level']['title']) &&
1442 isset($values[$fields['participant_fee_level']['title']])
1443 ) {
1444 $feeLevel = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1445 $values[$fields['participant_fee_level']['title']]
1446 );
1447 foreach ($feeLevel as $key => $value) {
1448 if (!$value) {
1449 unset($feeLevel[$key]);
1450 }
1451 }
1452 $values[$fields['participant_fee_level']['title']] = implode(',', $feeLevel);
1453 }
1454
1455 unset($values[$fields['participant_id']['title']]);
1456
1457 $val[] = $values;
1458 }
1459 }
1460
1461 if (count($val)) {
1462 $template->assign($name, $val);
1463 }
1464
1465 if (count($groupTitles)) {
1466 $template->assign($name . '_grouptitle', $groupTitles);
1467 }
1468
1469 //return if we only require array of participant's info.
1470 if ($isCustomProfile) {
1471 if (count($val)) {
1472 return array($val, $groupTitles);
1473 }
1474 else {
1475 return NULL;
1476 }
1477 }
1478 }
1479
1480 /**
1481 * Build the array for display the profile fields.
1482 *
1483 * @param array $params
1484 * Key value.
1485 * @param int $gid
1486 * Profile Id.
1487 * @param array $groupTitle
1488 * Profile Group Title.
1489 * @param array $values
1490 * Formatted array of key value.
1491 *
1492 * @param array $profileFields
1493 */
1494 public static function displayProfile(&$params, $gid, &$groupTitle, &$values, &$profileFields = array()) {
1495 if ($gid) {
1496 $config = CRM_Core_Config::singleton();
1497 $session = CRM_Core_Session::singleton();
1498 $contactID = $session->get('userID');
1499 if ($contactID) {
1500 if (CRM_Core_BAO_UFGroup::filterUFGroups($gid, $contactID)) {
1501 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, CRM_Core_Action::VIEW);
1502 }
1503 }
1504 else {
1505 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, CRM_Core_Action::ADD);
1506 }
1507
1508 foreach ($fields as $v) {
1509 if (!empty($v['groupTitle'])) {
1510 $groupTitle['groupTitle'] = $v['groupTitle'];
1511 break;
1512 }
1513 }
1514
1515 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
1516 //start of code to set the default values
1517 foreach ($fields as $name => $field) {
1518 $customVal = '';
1519 $skip = FALSE;
1520 // skip fields that should not be displayed separately
1521 if ($field['skipDisplay']) {
1522 continue;
1523 }
1524
1525 $index = $field['title'];
1526 if ($name === 'organization_name') {
1527 $values[$index] = $params[$name];
1528 }
1529
1530 if ('state_province' == substr($name, 0, 14)) {
1531 if ($params[$name]) {
1532 $values[$index] = CRM_Core_PseudoConstant::stateProvince($params[$name]);
1533 }
1534 else {
1535 $values[$index] = '';
1536 }
1537 }
1538 elseif ('date' == substr($name, -4)) {
1539 $values[$index] = CRM_Utils_Date::customFormat(CRM_Utils_Date::processDate($params[$name]),
1540 $config->dateformatFull);
1541 }
1542 elseif ('country' == substr($name, 0, 7)) {
1543 if ($params[$name]) {
1544 $values[$index] = CRM_Core_PseudoConstant::country($params[$name]);
1545 }
1546 else {
1547 $values[$index] = '';
1548 }
1549 }
1550 elseif ('county' == substr($name, 0, 6)) {
1551 if ($params[$name]) {
1552 $values[$index] = CRM_Core_PseudoConstant::county($params[$name]);
1553 }
1554 else {
1555 $values[$index] = '';
1556 }
1557 }
1558 elseif (in_array(substr($name, 0, -3), array('gender', 'prefix', 'suffix', 'communication_style'))) {
1559 $values[$index] = CRM_Core_PseudoConstant::getLabel('CRM_Contact_DAO_Contact', $name, $params[$name]);
1560 }
1561 elseif (in_array($name, array(
1562 'addressee',
1563 'email_greeting',
1564 'postal_greeting',
1565 ))) {
1566 $filterCondition = array('greeting_type' => $name);
1567 $greeting = CRM_Core_PseudoConstant::greeting($filterCondition);
1568 $values[$index] = $greeting[$params[$name]];
1569 }
1570 elseif ($name === 'preferred_communication_method') {
1571 $communicationFields = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'preferred_communication_method');
1572 $compref = array();
1573 $pref = $params[$name];
1574 if (is_array($pref)) {
1575 foreach ($pref as $k => $v) {
1576 if ($v) {
1577 $compref[] = $communicationFields[$k];
1578 }
1579 }
1580 }
1581 $values[$index] = implode(',', $compref);
1582 }
1583 elseif ($name == 'contact_sub_type') {
1584 $values[$index] = implode(', ', $params[$name]);
1585 }
1586 elseif ($name == 'group') {
1587 $groups = CRM_Contact_BAO_GroupContact::getGroupList();
1588 $title = array();
1589 foreach ($params[$name] as $gId => $dontCare) {
1590 if ($dontCare) {
1591 $title[] = $groups[$gId];
1592 }
1593 }
1594 $values[$index] = implode(', ', $title);
1595 }
1596 elseif ($name == 'tag') {
1597 $entityTags = $params[$name];
1598 $allTags = CRM_Core_PseudoConstant::get('CRM_Core_DAO_EntityTag', 'tag_id', array('onlyActive' => FALSE));
1599 $title = array();
1600 if (is_array($entityTags)) {
1601 foreach ($entityTags as $tagId => $dontCare) {
1602 $title[] = $allTags[$tagId];
1603 }
1604 }
1605 $values[$index] = implode(', ', $title);
1606 }
1607 elseif ('participant_role_id' == $name OR
1608 'participant_role' == $name
1609 ) {
1610 $roles = CRM_Event_PseudoConstant::participantRole();
1611 $values[$index] = $roles[$params[$name]];
1612 }
1613 elseif ('participant_status_id' == $name OR
1614 'participant_status' == $name
1615 ) {
1616 $status = CRM_Event_PseudoConstant::participantStatus();
1617 $values[$index] = $status[$params[$name]];
1618 }
1619 elseif (substr($name, -11) == 'campaign_id') {
1620 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($params[$name]);
1621 $values[$index] = CRM_Utils_Array::value($params[$name], $campaigns);
1622 }
1623 elseif (strpos($name, '-') !== FALSE) {
1624 list($fieldName, $id) = CRM_Utils_System::explode('-', $name, 2);
1625 $detailName = str_replace(' ', '_', $name);
1626 if (in_array($fieldName, array(
1627 'state_province',
1628 'country',
1629 'county',
1630 ))) {
1631 $values[$index] = $params[$detailName];
1632 $idx = $detailName . '_id';
1633 $values[$index] = $params[$idx];
1634 }
1635 elseif ($fieldName == 'im') {
1636 $providerName = NULL;
1637 if ($providerId = $detailName . '-provider_id') {
1638 $providerName = CRM_Utils_Array::value($params[$providerId], $imProviders);
1639 }
1640 if ($providerName) {
1641 $values[$index] = $params[$detailName] . " (" . $providerName . ")";
1642 }
1643 else {
1644 $values[$index] = $params[$detailName];
1645 }
1646 }
1647 elseif ($fieldName == 'phone') {
1648 $phoneExtField = str_replace('phone', 'phone_ext', $detailName);
1649 if (isset($params[$phoneExtField])) {
1650 $values[$index] = $params[$detailName] . " (" . $params[$phoneExtField] . ")";
1651 }
1652 else {
1653 $values[$index] = $params[$detailName];
1654 }
1655 }
1656 else {
1657 $values[$index] = $params[$detailName];
1658 }
1659 }
1660 else {
1661 if (substr($name, 0, 7) === 'do_not_' or substr($name, 0, 3) === 'is_') {
1662 if ($params[$name]) {
1663 $values[$index] = '[ x ]';
1664 }
1665 }
1666 else {
1667 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($name)) {
1668 $query = "
1669 SELECT html_type, data_type
1670 FROM civicrm_custom_field
1671 WHERE id = $cfID
1672 ";
1673 $dao = CRM_Core_DAO::executeQuery($query);
1674 $dao->fetch();
1675 $htmlType = $dao->html_type;
1676
1677 if ($htmlType == 'File') {
1678 $path = CRM_Utils_Array::value('name', $params[$name]);
1679 $fileType = CRM_Utils_Array::value('type', $params[$name]);
1680 $values[$index] = CRM_Utils_File::getFileURL($path, $fileType);
1681 }
1682 else {
1683 if ($dao->data_type == 'Int' ||
1684 $dao->data_type == 'Boolean'
1685 ) {
1686 $v = $params[$name];
1687 if (!CRM_Utils_System::isNull($v)) {
1688 $customVal = (int) $v;
1689 }
1690 }
1691 elseif ($dao->data_type == 'Float') {
1692 $customVal = (float ) ($params[$name]);
1693 }
1694 elseif ($dao->data_type == 'Date') {
1695 //@todo note the currently we are using default date time formatting. Since you can select/set
1696 // different date and time format specific to custom field we should consider fixing this
1697 // sometime in the future
1698 $customVal = $displayValue = CRM_Utils_Date::customFormat(
1699 CRM_Utils_Date::processDate($params[$name]), $config->dateformatFull);
1700
1701 if (!empty($params[$name . '_time'])) {
1702 $customVal = $displayValue = CRM_Utils_Date::customFormat(
1703 CRM_Utils_Date::processDate($params[$name], $params[$name . '_time']),
1704 $config->dateformatDatetime);
1705 }
1706 $skip = TRUE;
1707 }
1708 else {
1709 $customVal = $params[$name];
1710 }
1711 //take the custom field options
1712 $returnProperties = array($name => 1);
1713 $query = new CRM_Contact_BAO_Query($params, $returnProperties, $fields);
1714 if (!$skip) {
1715 $displayValue = CRM_Core_BAO_CustomField::displayValue($customVal, $cfID);
1716 }
1717 //Hack since we dont have function to check empty.
1718 //FIXME in 2.3 using crmIsEmptyArray()
1719 $customValue = TRUE;
1720 if (is_array($customVal) && is_array($displayValue)) {
1721 $customValue = array_diff($customVal, $displayValue);
1722 }
1723 //use difference of arrays
1724 if (empty($customValue) || !$customValue) {
1725 $values[$index] = '';
1726 }
1727 else {
1728 $values[$index] = $displayValue;
1729 }
1730 }
1731 }
1732 elseif ($name == 'home_URL' &&
1733 !empty($params[$name])
1734 ) {
1735 $url = CRM_Utils_System::fixURL($params[$name]);
1736 $values[$index] = "<a href=\"$url\">{$params[$name]}</a>";
1737 }
1738 elseif (in_array($name, array(
1739 'birth_date',
1740 'deceased_date',
1741 'participant_register_date',
1742 ))) {
1743 $values[$index] = CRM_Utils_Date::customFormat(CRM_Utils_Date::format($params[$name]));
1744 }
1745 else {
1746 $values[$index] = CRM_Utils_Array::value($name, $params);
1747 }
1748 }
1749 }
1750 $profileFields[$name] = $field;
1751 }
1752 }
1753 }
1754
1755 /**
1756 * Build the array for Additional participant's information array of primary and additional Ids.
1757 *
1758 * @param int $participantId
1759 * Id of Primary participant.
1760 * @param array $values
1761 * Key/value event info.
1762 * @param int $contactId
1763 * Contact id of Primary participant.
1764 * @param bool $isTest
1765 * Whether test or live transaction.
1766 * @param bool $isIdsArray
1767 * To return an array of Ids.
1768 *
1769 * @param bool $skipCancel
1770 *
1771 * @return array
1772 * array of Additional participant's info OR array of Ids.
1773 */
1774 public static function buildCustomProfile(
1775 $participantId,
1776 $values,
1777 $contactId = NULL,
1778 $isTest = FALSE,
1779 $isIdsArray = FALSE,
1780 $skipCancel = TRUE
1781 ) {
1782
1783 $customProfile = $additionalIDs = array();
1784 if (!$participantId) {
1785 CRM_Core_Error::fatal(ts('Cannot find participant ID'));
1786 }
1787
1788 //set Ids of Primary Participant also.
1789 if ($isIdsArray && $contactId) {
1790 $additionalIDs[$participantId] = $contactId;
1791 }
1792
1793 //hack to skip cancelled participants, CRM-4320
1794 $where = "participant.registered_by_id={$participantId}";
1795 if ($skipCancel) {
1796 $cancelStatusId = 0;
1797 $negativeStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Negative'");
1798 $cancelStatusId = array_search('Cancelled', $negativeStatuses);
1799 $where .= " AND participant.status_id != {$cancelStatusId}";
1800 }
1801 $query = "
1802 SELECT participant.id, participant.contact_id
1803 FROM civicrm_participant participant
1804 WHERE {$where}";
1805
1806 $dao = CRM_Core_DAO::executeQuery($query);
1807 while ($dao->fetch()) {
1808 $additionalIDs[$dao->id] = $dao->contact_id;
1809 }
1810
1811 //return if only array is required.
1812 if ($isIdsArray && $contactId) {
1813 return $additionalIDs;
1814 }
1815
1816 $preProfileID = CRM_Utils_Array::value('additional_custom_pre_id', $values);
1817 $postProfileID = CRM_Utils_Array::value('additional_custom_post_id', $values);
1818 //else build array of Additional participant's information.
1819 if (count($additionalIDs)) {
1820 if ($preProfileID || $postProfileID) {
1821 $template = CRM_Core_Smarty::singleton();
1822
1823 $isCustomProfile = TRUE;
1824 $i = 1;
1825 $title = $groupTitles = array();
1826 foreach ($additionalIDs as $pId => $cId) {
1827 //get the params submitted by participant.
1828 $participantParams = CRM_Utils_Array::value($pId, $values['params'], array());
1829
1830 list($profilePre, $groupTitles) = self::buildCustomDisplay($preProfileID,
1831 'additionalCustomPre',
1832 $cId,
1833 $template,
1834 $pId,
1835 $isTest,
1836 $isCustomProfile,
1837 $participantParams
1838 );
1839
1840 if ($profilePre) {
1841 $profile = $profilePre;
1842 // $customProfile[$i] = array_merge( $groupTitles, $customProfile[$i] );
1843 if ($i === 1) {
1844 $title = $groupTitles;
1845 }
1846 }
1847
1848 list($profilePost, $groupTitles) = self::buildCustomDisplay($postProfileID,
1849 'additionalCustomPost',
1850 $cId,
1851 $template,
1852 $pId,
1853 $isTest,
1854 $isCustomProfile,
1855 $participantParams
1856 );
1857
1858 if ($profilePost) {
1859 if (isset($profilePre)) {
1860 $profile = array_merge($profilePre, $profilePost);
1861 if ($i === 1) {
1862 $title = array_merge($title, $groupTitles);
1863 }
1864 }
1865 else {
1866 $profile = $profilePost;
1867 if ($i === 1) {
1868 $title = $groupTitles;
1869 }
1870 }
1871 }
1872 $profiles[] = $profile;
1873 $i++;
1874 }
1875 $customProfile['title'] = $title;
1876 $customProfile['profile'] = $profiles;
1877 }
1878 }
1879
1880 return $customProfile;
1881 }
1882
1883 /**
1884 * Retrieve all event addresses.
1885 *
1886 * @return array
1887 */
1888 public static function getLocationEvents() {
1889 $events = array();
1890 $ret = array(
1891 'loc_block_id',
1892 'loc_block_id.address_id.name',
1893 'loc_block_id.address_id.street_address',
1894 'loc_block_id.address_id.supplemental_address_1',
1895 'loc_block_id.address_id.supplemental_address_2',
1896 'loc_block_id.address_id.supplemental_address_3',
1897 'loc_block_id.address_id.city',
1898 'loc_block_id.address_id.state_province_id.name',
1899 );
1900
1901 $result = civicrm_api3('Event', 'get', array(
1902 'check_permissions' => TRUE,
1903 'return' => $ret,
1904 'loc_block_id.address_id' => array('IS NOT NULL' => 1),
1905 'options' => array(
1906 'limit' => 0,
1907 ),
1908 ));
1909
1910 foreach ($result['values'] as $event) {
1911 $address = '';
1912 foreach ($ret as $field) {
1913 if ($field != 'loc_block_id' && !empty($event[$field])) {
1914 $address .= ($address ? ' :: ' : '') . $event[$field];
1915 }
1916 }
1917 if ($address) {
1918 $events[$event['loc_block_id']] = $address;
1919 }
1920 }
1921
1922 return CRM_Utils_Array::asort($events);
1923 }
1924
1925 /**
1926 * @param int $locBlockId
1927 *
1928 * @return int|null|string
1929 */
1930 public static function countEventsUsingLocBlockId($locBlockId) {
1931 if (!$locBlockId) {
1932 return 0;
1933 }
1934
1935 $locBlockId = CRM_Utils_Type::escape($locBlockId, 'Integer');
1936
1937 $query = "
1938 SELECT count(*) FROM civicrm_event ce
1939 WHERE ce.loc_block_id = $locBlockId";
1940
1941 return CRM_Core_DAO::singleValueQuery($query);
1942 }
1943
1944 /**
1945 * Check if event registration is valid according to permissions AND Dates.
1946 *
1947 * @param array $values
1948 * @param int $eventID
1949 * @return bool
1950 */
1951 public static function validRegistrationRequest($values, $eventID) {
1952 // check that the user has permission to register for this event
1953 $hasPermission = CRM_Core_Permission::event(CRM_Core_Permission::EDIT,
1954 $eventID, 'register for events'
1955 );
1956
1957 return $hasPermission && self::validRegistrationDate($values);
1958 }
1959
1960 /**
1961 * @param $values
1962 *
1963 * @return bool
1964 */
1965 public static function validRegistrationDate(&$values) {
1966 // make sure that we are between registration start date and end dates
1967 // and that if the event has ended, registration is still specifically open
1968 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_start_date', $values));
1969 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_end_date', $values));
1970 $eventEnd = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('end_date', $values));
1971 $now = time();
1972 $validDate = TRUE;
1973 if ($startDate && $startDate >= $now) {
1974 $validDate = FALSE;
1975 }
1976 elseif ($endDate && $endDate < $now) {
1977 $validDate = FALSE;
1978 }
1979 elseif ($eventEnd && $eventEnd < $now && !$endDate) {
1980 $validDate = FALSE;
1981 }
1982
1983 return $validDate;
1984 }
1985
1986 /* Function to Show - Hide the Registration Link.
1987 *
1988 * @param array $values
1989 * Key/value event info.
1990 * @return boolean
1991 * true if allow registration otherwise false
1992 */
1993 /**
1994 * @param $values
1995 *
1996 * @return bool
1997 */
1998 public static function showHideRegistrationLink($values) {
1999
2000 $session = CRM_Core_Session::singleton();
2001 $contactID = $session->get('userID');
2002 $alreadyRegistered = FALSE;
2003
2004 if ($contactID) {
2005 $params = array('contact_id' => $contactID);
2006
2007 if ($eventId = CRM_Utils_Array::value('id', $values['event'])) {
2008 $params['event_id'] = $eventId;
2009 }
2010 if ($roleId = CRM_Utils_Array::value('default_role_id', $values['event'])) {
2011 $params['role_id'] = $roleId;
2012 }
2013 $alreadyRegistered = self::checkRegistration($params);
2014 }
2015
2016 if (!empty($values['event']['allow_same_participant_emails']) ||
2017 !$alreadyRegistered
2018 ) {
2019 return TRUE;
2020 }
2021 return FALSE;
2022 }
2023
2024 /* Function to check if given contact is already registered.
2025 *
2026 * @param array $params
2027 * Key/value participant info.
2028 * @return boolean
2029 */
2030 /**
2031 * @param array $params
2032 *
2033 * @return bool
2034 */
2035 public static function checkRegistration($params) {
2036 $alreadyRegistered = FALSE;
2037 if (empty($params['contact_id'])) {
2038 return $alreadyRegistered;
2039 }
2040
2041 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
2042
2043 $participant = new CRM_Event_DAO_Participant();
2044 $participant->copyValues($params);
2045
2046 $participant->is_test = CRM_Utils_Array::value('is_test', $params, 0);
2047 $participant->selectAdd();
2048 $participant->selectAdd('status_id');
2049 if ($participant->find(TRUE) && array_key_exists($participant->status_id, $statusTypes)) {
2050 $alreadyRegistered = TRUE;
2051 }
2052
2053 return $alreadyRegistered;
2054 }
2055
2056 /**
2057 * Make sure that the user has permission to access this event.
2058 *
2059 * @param int $eventId
2060 * @param int $type
2061 *
2062 * @return string
2063 * the permission that the user has (or null)
2064 */
2065 public static function checkPermission($eventId = NULL, $type = CRM_Core_Permission::VIEW) {
2066 static $permissions = NULL;
2067
2068 if (empty($permissions)) {
2069 $params = array(
2070 'check_permissions' => 1,
2071 'return' => 'title',
2072 'options' => array(
2073 'limit' => 0,
2074 ),
2075 );
2076
2077 if ($eventId) {
2078 $params['id'] = $eventId;
2079 }
2080
2081 $result = civicrm_api3('Event', 'get', $params);
2082 $allEvents = CRM_Utils_Array::collect('title', $result['values']);
2083
2084 // Search again, but only events created by the user.
2085 $params['created_id'] = 'user_contact_id';
2086 $result = civicrm_api3('Event', 'get', $params);
2087 $createdEvents = CRM_Utils_Array::collect('title', $result['values']);
2088
2089 // Note: for a multisite setup, a user with edit all events, can edit all events
2090 // including those from other sites
2091 if (CRM_Core_Permission::check('edit all events')) {
2092 $permissions[CRM_Core_Permission::EDIT] = array_keys($allEvents);
2093 }
2094 else {
2095 $permissions[CRM_Core_Permission::EDIT] = CRM_ACL_API::group(CRM_Core_Permission::EDIT, NULL, 'civicrm_event', $allEvents, $createdEvents);
2096 }
2097
2098 if (CRM_Core_Permission::check('edit all events')) {
2099 $permissions[CRM_Core_Permission::VIEW] = array_keys($allEvents);
2100 }
2101 else {
2102 if (CRM_Core_Permission::check('access CiviEvent') &&
2103 CRM_Core_Permission::check('view event participants')
2104 ) {
2105 // use case: allow "view all events" but NOT "edit all events"
2106 // so for a normal site allow users with these two permissions to view all events AND
2107 // at the same time also allow any hook to override if needed.
2108 $createdEvents = array_keys($allEvents);
2109 }
2110 $permissions[CRM_Core_Permission::VIEW] = CRM_ACL_API::group(CRM_Core_Permission::VIEW, NULL, 'civicrm_event', $allEvents, $createdEvents);
2111 }
2112
2113 $permissions[CRM_Core_Permission::DELETE] = array();
2114 if (CRM_Core_Permission::check('delete in CiviEvent')) {
2115 // Note: we want to restrict the scope of delete permission to
2116 // events that are editable/viewable (usecase multisite).
2117 // We can remove array_intersect once we have ACL support for delete functionality.
2118 $permissions[CRM_Core_Permission::DELETE] = array_intersect($permissions[CRM_Core_Permission::EDIT],
2119 $permissions[CRM_Core_Permission::VIEW]
2120 );
2121 }
2122 }
2123
2124 if ($eventId) {
2125 return in_array($eventId, $permissions[$type]) ? TRUE : FALSE;
2126 }
2127
2128 return $permissions;
2129 }
2130
2131 /**
2132 * Build From Email as the combination of all the email ids of the logged in user,
2133 * the domain email id and the email id configured for the event
2134 *
2135 * @param int $eventId
2136 * The id of the event.
2137 *
2138 * @return array
2139 * an array of email ids
2140 */
2141 public static function getFromEmailIds($eventId = NULL) {
2142 $fromEmailValues['from_email_id'] = CRM_Core_BAO_Email::getFromEmail();
2143
2144 if ($eventId) {
2145 // add the email id configured for the event
2146 $params = array('id' => $eventId);
2147 $returnProperties = array('confirm_from_name', 'confirm_from_email', 'cc_confirm', 'bcc_confirm');
2148 $eventEmail = array();
2149
2150 CRM_Core_DAO::commonRetrieve('CRM_Event_DAO_Event', $params, $eventEmail, $returnProperties);
2151 if (!empty($eventEmail['confirm_from_name']) && !empty($eventEmail['confirm_from_email'])) {
2152 $eventEmailId = "{$eventEmail['confirm_from_name']} <{$eventEmail['confirm_from_email']}>";
2153
2154 $fromEmailValues['from_email_id'][$eventEmailId] = htmlspecialchars($eventEmailId);
2155 $fromEmailId = array(
2156 'cc' => CRM_Utils_Array::value('cc_confirm', $eventEmail),
2157 'bcc' => CRM_Utils_Array::value('bcc_confirm', $eventEmail),
2158 );
2159 $fromEmailValues = array_merge($fromEmailValues, $fromEmailId);
2160 }
2161 }
2162
2163 return $fromEmailValues;
2164 }
2165
2166 /**
2167 * Calculate event total seats occupied.
2168 *
2169 * @param int $eventId
2170 * Event id.
2171 * @param sting $extraWhereClause
2172 * Extra filter on participants.
2173 *
2174 * @return int
2175 * event total seats w/ given criteria.
2176 */
2177 public static function eventTotalSeats($eventId, $extraWhereClause = NULL) {
2178 if (empty($eventId)) {
2179 return 0;
2180 }
2181
2182 $extraWhereClause = trim($extraWhereClause);
2183 if (!empty($extraWhereClause)) {
2184 $extraWhereClause = " AND ( {$extraWhereClause} )";
2185 }
2186
2187 //event seats calculation :
2188 //1. consider event seat as a single when participant does not have line item.
2189 //2. consider event seat as a single when participant has line items but does not
2190 // have count for corresponding price field value ( ie price field value does not carry any seat )
2191 //3. consider event seat as a sum of all seats from line items in case price field value carries count.
2192
2193 $query = "
2194 SELECT IF ( SUM( value.count*lineItem.qty ),
2195 SUM( value.count*lineItem.qty ) +
2196 COUNT( DISTINCT participant.id ) -
2197 COUNT( DISTINCT IF ( value.count, participant.id, NULL ) ),
2198 COUNT( DISTINCT participant.id ) )
2199 FROM civicrm_participant participant
2200 INNER JOIN civicrm_contact contact ON ( contact.id = participant.contact_id AND contact.is_deleted = 0 )
2201 INNER JOIN civicrm_event event ON ( event.id = participant.event_id )
2202 LEFT JOIN civicrm_line_item lineItem ON ( lineItem.entity_id = participant.id
2203 AND lineItem.entity_table = 'civicrm_participant' )
2204 LEFT JOIN civicrm_price_field_value value ON ( value.id = lineItem.price_field_value_id AND value.count )
2205 WHERE ( participant.event_id = %1 )
2206 AND participant.is_test = 0
2207 {$extraWhereClause}
2208 GROUP BY participant.event_id";
2209
2210 return (int) CRM_Core_DAO::singleValueQuery($query, array(1 => array($eventId, 'Positive')));
2211 }
2212
2213 /**
2214 * Retrieve event template default values to be set.
2215 * as default values for current new event.
2216 *
2217 * @param int $templateId
2218 * Event template id.
2219 *
2220 * @return array
2221 * Array of custom data defaults.
2222 */
2223 public static function getTemplateDefaultValues($templateId) {
2224 $defaults = array();
2225 if (!$templateId) {
2226 return $defaults;
2227 }
2228
2229 $templateParams = array('id' => $templateId);
2230 CRM_Event_BAO_Event::retrieve($templateParams, $defaults);
2231 $fieldsToExclude = array(
2232 'id',
2233 'default_fee_id',
2234 'default_discount_fee_id',
2235 'created_date',
2236 'created_id',
2237 'is_template',
2238 'template_title',
2239 );
2240 $defaults = array_diff_key($defaults, array_flip($fieldsToExclude));
2241 return $defaults;
2242 }
2243
2244 /**
2245 * @param int $event_id
2246 *
2247 * @return object
2248 */
2249 public static function get_sub_events($event_id) {
2250 $params = array('parent_event_id' => $event_id);
2251 $defaults = array();
2252 return CRM_Event_BAO_Event::retrieve($params, $defaults);
2253 }
2254
2255 /**
2256 * Update the Campaign Id of all the participants of the given event.
2257 *
2258 * @param int $eventID
2259 * Event id.
2260 * @param int $eventCampaignID
2261 * Campaign id of that event.
2262 */
2263 public static function updateParticipantCampaignID($eventID, $eventCampaignID) {
2264 $params = array();
2265 $params[1] = array($eventID, 'Integer');
2266
2267 if (empty($eventCampaignID)) {
2268 $query = "UPDATE civicrm_participant SET campaign_id = NULL WHERE event_id = %1";
2269 }
2270 else {
2271 $query = "UPDATE civicrm_participant SET campaign_id = %2 WHERE event_id = %1";
2272 $params[2] = array($eventCampaignID, 'Integer');
2273 }
2274 CRM_Core_DAO::executeQuery($query, $params);
2275 }
2276
2277 /**
2278 * Get options for a given field.
2279 * @see CRM_Core_DAO::buildOptions
2280 *
2281 * @param string $fieldName
2282 * @param string $context : @see CRM_Core_DAO::buildOptionsContext
2283 * @param array $props : whatever is known about this dao object
2284 *
2285 * @return array|bool
2286 */
2287 public static function buildOptions($fieldName, $context = NULL, $props = array()) {
2288 $params = array();
2289 // Special logic for fields whose options depend on context or properties
2290 switch ($fieldName) {
2291 case 'financial_type_id':
2292 // Fixme - this is going to ignore context, better to get conditions, add params, and call PseudoConstant::get
2293 return CRM_Financial_BAO_FinancialType::getIncomeFinancialType();
2294
2295 break;
2296 }
2297 return CRM_Core_PseudoConstant::get(__CLASS__, $fieldName, $params, $context);
2298 }
2299
2300 }