Merge pull request #4899 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Event / Form / Registration.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2014
33 * $Id$
34 *
35 */
36
37 /**
38 * This class generates form components for processing Event
39 *
40 */
41 class CRM_Event_Form_Registration extends CRM_Core_Form {
42
43 /**
44 * How many locationBlocks should we display?
45 *
46 * @var int
47 * @const
48 */
49 const LOCATION_BLOCKS = 1;
50
51 /**
52 * The id of the event we are proceessing
53 *
54 * @var int
55 */
56 public $_eventId;
57
58 /**
59 * The array of ids of all the participant we are proceessing
60 *
61 * @var int
62 */
63 protected $_participantIDS = NULL;
64
65 /**
66 * The id of the participant we are proceessing
67 *
68 * @var int
69 */
70 protected $_participantId;
71
72 /**
73 * Is participant able to walk registration wizard.
74 *
75 * @var Boolean
76 */
77 public $_allowConfirmation;
78
79 /**
80 * Is participant requires approval
81 *
82 * @var Boolean
83 */
84 public $_requireApproval;
85
86 /**
87 * Is event configured for waitlist.
88 *
89 * @var Boolean
90 */
91 public $_allowWaitlist;
92
93 /**
94 * Store additional participant ids
95 * when there are pre-registered.
96 *
97 * @var array
98 */
99 public $_additionalParticipantIds;
100
101 /**
102 * The mode that we are in
103 *
104 * @var string
105 * @protect
106 */
107 public $_mode;
108
109 /**
110 * The values for the contribution db object
111 *
112 * @var array
113 */
114 public $_values;
115
116 /**
117 * The paymentProcessor attributes for this page
118 *
119 * @var array
120 */
121 public $_paymentProcessor;
122
123 /**
124 * The params submitted by the form and computed by the app
125 *
126 * @var array
127 */
128 protected $_params;
129
130 /**
131 * The fields involved in this contribution page
132 *
133 * @var array
134 */
135 public $_fields;
136
137 /**
138 * The billing location id for this contribiution page
139 *
140 * @var int
141 */
142 public $_bltID;
143
144 /**
145 * Price Set ID, if the new price set method is used
146 *
147 * @var int
148 */
149 public $_priceSetId = NULL;
150
151 /**
152 * Array of fields for the price set
153 *
154 * @var array
155 */
156 public $_priceSet;
157
158 public $_action;
159
160 public $_pcpId;
161
162 /* Is event already full.
163 *
164 * @var boolean
165 */
166
167 public $_isEventFull;
168
169 public $_lineItem;
170 public $_lineItemParticipantsCount;
171 public $_availableRegistrations;
172
173 public $_forcePayement;
174
175 public $_isBillingAddressRequiredForPayLater;
176
177 /**
178 * Set variables up before form is built
179 *
180 * @return void
181 */
182 public function preProcess() {
183 $this->_eventId = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
184 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE);
185
186 //CRM-4320
187 $this->_participantId = CRM_Utils_Request::retrieve('participantId', 'Positive', $this);
188
189 // current mode
190 $this->_mode = ($this->_action == 1024) ? 'test' : 'live';
191
192 $this->_values = $this->get('values');
193 $this->_fields = $this->get('fields');
194 $this->_bltID = $this->get('bltID');
195 $this->_paymentProcessor = $this->get('paymentProcessor');
196 $this->_priceSetId = $this->get('priceSetId');
197 $this->_priceSet = $this->get('priceSet');
198 $this->_lineItem = $this->get('lineItem');
199 $this->_isEventFull = $this->get('isEventFull');
200 $this->_lineItemParticipantsCount = $this->get('lineItemParticipants');
201 if (!is_array($this->_lineItem)) {
202 $this->_lineItem = array();
203 }
204 if (!is_array($this->_lineItemParticipantsCount)) {
205 $this->_lineItemParticipantsCount = array();
206 }
207 $this->_availableRegistrations = $this->get('availableRegistrations');
208 $this->_participantIDS = $this->get('participantIDs');
209
210 //check if participant allow to walk registration wizard.
211 $this->_allowConfirmation = $this->get('allowConfirmation');
212
213 // check for Approval
214 $this->_requireApproval = $this->get('requireApproval');
215
216 // check for waitlisting.
217 $this->_allowWaitlist = $this->get('allowWaitlist');
218
219 $this->_forcePayement = $this->get('forcePayement');
220
221 //get the additional participant ids.
222 $this->_additionalParticipantIds = $this->get('additionalParticipantIds');
223 $config = CRM_Core_Config::singleton();
224
225 if (!$this->_values) {
226 // create redirect URL to send folks back to event info page is registration not available
227 $infoUrl = CRM_Utils_System::url('civicrm/event/info', "reset=1&id={$this->_eventId}",
228 FALSE, NULL, FALSE, TRUE
229 );
230
231 // this is the first time we are hitting this, so check for permissions here
232 if (!CRM_Core_Permission::event(CRM_Core_Permission::EDIT, $this->_eventId, 'register for events')) {
233 CRM_Core_Error::statusBounce(ts('You do not have permission to register for this event'), $infoUrl);
234 }
235
236 // get all the values from the dao object
237 $this->_values = $this->_fields = array();
238 $this->_forcePayement = FALSE;
239
240 //retrieve event information
241 $params = array('id' => $this->_eventId);
242 CRM_Event_BAO_Event::retrieve($params, $this->_values['event']);
243
244 $this->checkValidEvent($infoUrl);
245 // get the participant values, CRM-4320
246 $this->_allowConfirmation = FALSE;
247 if ($this->_participantId) {
248 $this->processFirstParticipant($this->_participantId);
249 }
250 //check for additional participants.
251 if ($this->_allowConfirmation && $this->_values['event']['is_multiple_registrations']) {
252 $additionalParticipantIds = CRM_Event_BAO_Participant::getAdditionalParticipantIds($this->_participantId);
253 $cnt = 1;
254 foreach ($additionalParticipantIds as $additionalParticipantId) {
255 $this->_additionalParticipantIds[$cnt] = $additionalParticipantId;
256 $cnt++;
257 }
258 $this->set('additionalParticipantIds', $this->_additionalParticipantIds);
259 }
260
261 $eventFull = CRM_Event_BAO_Participant::eventFull($this->_eventId, FALSE,
262 CRM_Utils_Array::value('has_waitlist', $this->_values['event'])
263 );
264
265 $this->_allowWaitlist = $this->_isEventFull = FALSE;
266 if ($eventFull && !$this->_allowConfirmation) {
267 $this->_isEventFull = TRUE;
268 //lets redirecting to info only when to waiting list.
269 $this->_allowWaitlist = CRM_Utils_Array::value('has_waitlist', $this->_values['event']);
270 if (!$this->_allowWaitlist) {
271 CRM_Utils_System::redirect($infoUrl);
272 }
273 }
274 $this->set('isEventFull', $this->_isEventFull);
275 $this->set('allowWaitlist', $this->_allowWaitlist);
276
277 //check for require requires approval.
278 $this->_requireApproval = FALSE;
279 if (!empty($this->_values['event']['requires_approval']) && !$this->_allowConfirmation) {
280 $this->_requireApproval = TRUE;
281 }
282 $this->set('requireApproval', $this->_requireApproval);
283
284 if (isset($this->_values['event']['default_role_id'])) {
285 $participant_role = CRM_Core_OptionGroup::values('participant_role');
286 $this->_values['event']['participant_role'] = $participant_role["{$this->_values['event']['default_role_id']}"];
287 }
288 // check for is_monetary status
289 $isMonetary = CRM_Utils_Array::value('is_monetary', $this->_values['event']);
290 $isPayLater = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_eventId, 'is_pay_later');
291 //check for variour combination for paylater, payment
292 //process with paid event.
293 if ($isMonetary && (!$isPayLater || !empty($this->_values['event']['payment_processor']))) {
294 $ppID = CRM_Utils_Array::value('payment_processor',
295 $this->_values['event']
296 );
297 if (!$ppID) {
298 CRM_Core_Error::statusBounce(ts('A payment processor must be selected for this event registration page, or the event must be configured to give users the option to pay later (contact the site administrator for assistance).'), $infoUrl);
299 }
300 $ppIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $ppID);
301 $this->_paymentProcessors = CRM_Financial_BAO_PaymentProcessor::getPayments($ppIds,
302 $this->_mode
303 );
304 $this->set('paymentProcessors', $this->_paymentProcessors);
305
306 //set default payment processor
307 if (!empty($this->_paymentProcessors) && empty($this->_paymentProcessor)) {
308 foreach ($this->_paymentProcessors as $ppId => $values) {
309 if ($values['is_default'] == 1 || (count($this->_paymentProcessors) == 1)) {
310 $defaultProcessorId = $ppId;
311 break;
312 }
313 }
314 }
315
316 if (isset($defaultProcessorId)) {
317 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($defaultProcessorId, $this->_mode);
318 }
319 // make sure we have a valid payment class, else abort
320 if ($this->_values['event']['is_monetary']) {
321 if (!CRM_Utils_System::isNull($this->_paymentProcessors)) {
322 foreach ($this->_paymentProcessors as $eachPaymentProcessor) {
323 // check selected payment processor is active
324 if (!$eachPaymentProcessor) {
325 CRM_Core_Error::fatal(ts('The site administrator must set a Payment Processor for this event in order to use online registration.'));
326 }
327 // ensure that processor has a valid config
328 $payment = CRM_Core_Payment::singleton($this->_mode, $eachPaymentProcessor, $this);
329 $error = $payment->checkConfig();
330 if (!empty($error)) {
331 CRM_Core_Error::fatal($error);
332 }
333 }
334 }
335 }
336 }
337 //init event fee.
338 self::initEventFee($this, $this->_eventId);
339
340 // get the profile ids
341 $ufJoinParams = array(
342 'entity_table' => 'civicrm_event',
343 // CRM-4377: CiviEvent for the main participant, CiviEvent_Additional for additional participants
344 'module' => 'CiviEvent',
345 'entity_id' => $this->_eventId,
346 );
347 list($this->_values['custom_pre_id'],
348 $this->_values['custom_post_id']
349 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
350
351 // set profiles for additional participants
352 if ($this->_values['event']['is_multiple_registrations']) {
353 // CRM-4377: CiviEvent for the main participant, CiviEvent_Additional for additional participants
354 $ufJoinParams['module'] = 'CiviEvent_Additional';
355
356 list($this->_values['additional_custom_pre_id'],
357 $this->_values['additional_custom_post_id'], $preActive, $postActive
358 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
359
360 // CRM-4377: we need to maintain backward compatibility, hence if there is profile for main contact
361 // set same profile for additional contacts.
362 if ($this->_values['custom_pre_id'] && !$this->_values['additional_custom_pre_id']) {
363 $this->_values['additional_custom_pre_id'] = $this->_values['custom_pre_id'];
364 }
365
366 if ($this->_values['custom_post_id'] && !$this->_values['additional_custom_post_id']) {
367 $this->_values['additional_custom_post_id'] = $this->_values['custom_post_id'];
368 }
369 // now check for no profile condition, in that case is_active = 0
370 if (isset($preActive) && !$preActive) {
371 unset($this->_values['additional_custom_pre_id']);
372 }
373 if (isset($postActive) && !$postActive) {
374 unset($this->_values['additional_custom_post_id']);
375 }
376 }
377 // get the billing location type
378 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', array(), 'validate');
379 // CRM-8108 remove ts from Billing as the location type can not be translated in CiviCRM!
380 //$this->_bltID = array_search( ts('Billing'), $locationTypes );
381 $this->_bltID = array_search('Billing', $locationTypes);
382 if (!$this->_bltID) {
383 CRM_Core_Error::fatal(ts('Please set a location type of %1', array(1 => 'Billing')));
384 }
385 $this->set('bltID', $this->_bltID);
386
387 if ($this->_values['event']['is_monetary']) {
388 CRM_Core_Payment_Form::setPaymentFieldsByProcessor($this, $this->_paymentProcessor);
389 }
390 $params = array('entity_id' => $this->_eventId, 'entity_table' => 'civicrm_event');
391 $this->_values['location'] = CRM_Core_BAO_Location::getValues($params, TRUE);
392
393 $this->set('values', $this->_values);
394 $this->set('fields', $this->_fields);
395
396 $this->_availableRegistrations =
397 CRM_Event_BAO_Participant::eventFull(
398 $this->_values['event']['id'], TRUE,
399 CRM_Utils_Array::value('has_waitlist', $this->_values['event'])
400 );
401 $this->set('availableRegistrations', $this->_availableRegistrations);
402 }
403 $this->assign_by_ref('paymentProcessor', $this->_paymentProcessor);
404
405 // check if this is a paypal auto return and redirect accordingly
406 if (CRM_Core_Payment::paypalRedirect($this->_paymentProcessor)) {
407 $url = CRM_Utils_System::url('civicrm/event/register',
408 "_qf_ThankYou_display=1&qfKey={$this->controller->_key}"
409 );
410 CRM_Utils_System::redirect($url);
411 }
412 $this->_contributeMode = $this->get('contributeMode');
413 $this->assign('contributeMode', $this->_contributeMode);
414
415 // setting CMS page title
416 CRM_Utils_System::setTitle($this->_values['event']['title']);
417 $this->assign('title', $this->_values['event']['title']);
418
419 $this->assign('paidEvent', $this->_values['event']['is_monetary']);
420
421 // we do not want to display recently viewed items on Registration pages
422 $this->assign('displayRecent', FALSE);
423 // Registration page values are cleared from session, so can't use normal Printer Friendly view.
424 // Use Browser Print instead.
425 $this->assign('browserPrint', TRUE);
426
427 $isShowLocation = CRM_Utils_Array::value('is_show_location', $this->_values['event']);
428 $this->assign('isShowLocation', $isShowLocation);
429 // Handle PCP
430 $pcpId = CRM_Utils_Request::retrieve('pcpId', 'Positive', $this);
431 if ($pcpId) {
432 $pcp = CRM_PCP_BAO_PCP::handlePcp($pcpId, 'event', $this->_values['event']);
433 $this->_pcpId = $pcp['pcpId'];
434 $this->_values['event']['intro_text'] = CRM_Utils_Array::value('intro_text', $pcp['pcpInfo']);
435 }
436
437 // assign all event properties so wizard templates can display event info.
438 $this->assign('event', $this->_values['event']);
439 $this->assign('location', $this->_values['location']);
440 $this->assign('bltID', $this->_bltID);
441 $isShowLocation = CRM_Utils_Array::value('is_show_location', $this->_values['event']);
442 $this->assign('isShowLocation', $isShowLocation);
443 //CRM-6907
444 $config->defaultCurrency = CRM_Utils_Array::value('currency', $this->_values['event'],
445 $config->defaultCurrency
446 );
447
448 //lets allow user to override campaign.
449 $campID = CRM_Utils_Request::retrieve('campID', 'Positive', $this);
450 if ($campID && CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Campaign', $campID)) {
451 $this->_values['event']['campaign_id'] = $campID;
452 }
453
454 // check if billing block is required for pay later
455 if (CRM_Utils_Array::value('is_pay_later', $this->_values['event'])) {
456 $this->_isBillingAddressRequiredForPayLater = CRM_Utils_Array::value('is_billing_required', $this->_values['event']);
457 $this->assign('isBillingAddressRequiredForPayLater', $this->_isBillingAddressRequiredForPayLater);
458 }
459 }
460
461 /**
462 * Assign the minimal set of variables to the template
463 *
464 * @return void
465 */
466 public function assignToTemplate() {
467 //process only primary participant params
468 $this->_params = $this->get('params');
469 if (isset($this->_params[0])) {
470 $params = $this->_params[0];
471 }
472 $name = '';
473 if (!empty($params['billing_first_name'])) {
474 $name = $params['billing_first_name'];
475 }
476
477 if (!empty($params['billing_middle_name'])) {
478 $name .= " {$params['billing_middle_name']}";
479 }
480
481 if (!empty($params['billing_last_name'])) {
482 $name .= " {$params['billing_last_name']}";
483 }
484 $this->assign('billingName', $name);
485 $this->set('name', $name);
486
487 $vars = array(
488 'amount',
489 'currencyID',
490 'credit_card_type',
491 'trxn_id',
492 'amount_level',
493 'receive_date',
494 );
495
496 foreach ($vars as $v) {
497 if (!empty($params[$v])) {
498 if ($v == 'receive_date') {
499 $this->assign($v, CRM_Utils_Date::mysqlToIso($params[$v]));
500 }
501 else {
502 $this->assign($v, $params[$v]);
503 }
504 }
505 elseif (CRM_Utils_Array::value('amount', $params) == 0) {
506 $this->assign($v, CRM_Utils_Array::value($v, $params));
507 }
508 }
509
510 // assign the address formatted up for display
511 $addressParts = array(
512 "street_address-{$this->_bltID}",
513 "city-{$this->_bltID}",
514 "postal_code-{$this->_bltID}",
515 "state_province-{$this->_bltID}",
516 "country-{$this->_bltID}",
517 );
518 $addressFields = array();
519 foreach ($addressParts as $part) {
520 list($n, $id) = explode('-', $part);
521 if (isset($params['billing_' . $part])) {
522 $addressFields[$n] = CRM_Utils_Array::value('billing_' . $part, $params);
523 }
524 }
525
526 $this->assign('address', CRM_Utils_Address::format($addressFields));
527
528 if ($this->_contributeMode == 'direct' && empty($params['is_pay_later'])) {
529 $date = CRM_Utils_Date::format(CRM_Utils_Array::value('credit_card_exp_date', $params));
530 $date = CRM_Utils_Date::mysqlToIso($date);
531 $this->assign('credit_card_exp_date', $date);
532 $this->assign('credit_card_number',
533 CRM_Utils_System::mungeCreditCard(CRM_Utils_Array::value('credit_card_number', $params))
534 );
535 }
536
537 // get the email that the confirmation would have been sent to
538 $session = CRM_Core_Session::singleton();
539
540 // assign is_email_confirm to templates
541 if (isset($this->_values['event']['is_email_confirm'])) {
542 $this->assign('is_email_confirm', $this->_values['event']['is_email_confirm']);
543 }
544
545 // assign pay later stuff
546 $params['is_pay_later'] = CRM_Utils_Array::value('is_pay_later', $params, FALSE);
547 $this->assign('is_pay_later', $params['is_pay_later']);
548 if ($params['is_pay_later']) {
549 $this->assign('pay_later_text', $this->_values['event']['pay_later_text']);
550 $this->assign('pay_later_receipt', $this->_values['event']['pay_later_receipt']);
551 }
552
553 // also assign all participantIDs to the template
554 // useful in generating confirmation numbers if needed
555 $this->assign('participantIDs',
556 $this->_participantIDS
557 );
558 }
559
560 /**
561 * Add the custom fields
562 *
563 * @param int $id
564 * @param string $name
565 * @param bool $viewOnly
566 *
567 * @return void
568 */
569 public function buildCustom($id, $name, $viewOnly = FALSE) {
570 if ($id) {
571 $button = substr($this->controller->getButtonName(), -4);
572 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
573 $session = CRM_Core_Session::singleton();
574 $contactID = $session->get('userID');
575
576 // we don't allow conflicting fields to be
577 // configured via profile
578 $fieldsToIgnore = array(
579 'participant_fee_amount' => 1,
580 'participant_fee_level' => 1,
581 );
582 if ($contactID) {
583 //FIX CRM-9653
584 if (is_array($id)) {
585 $fields = array();
586 foreach ($id as $profileID) {
587 $field = CRM_Core_BAO_UFGroup::getFields($profileID, FALSE, CRM_Core_Action::ADD,
588 NULL, NULL, FALSE, NULL,
589 FALSE, NULL, CRM_Core_Permission::CREATE,
590 'field_name', TRUE
591 );
592 $fields = array_merge($fields, $field);
593 }
594 }
595 else {
596 if (CRM_Core_BAO_UFGroup::filterUFGroups($id, $contactID)) {
597 $fields = CRM_Core_BAO_UFGroup::getFields($id, FALSE, CRM_Core_Action::ADD,
598 NULL, NULL, FALSE, NULL,
599 FALSE, NULL, CRM_Core_Permission::CREATE,
600 'field_name', TRUE
601 );
602 }
603 }
604 }
605 else {
606 $fields = CRM_Core_BAO_UFGroup::getFields($id, FALSE, CRM_Core_Action::ADD,
607 NULL, NULL, FALSE, NULL,
608 FALSE, NULL, CRM_Core_Permission::CREATE,
609 'field_name', TRUE
610 );
611 }
612
613 if (array_intersect_key($fields, $fieldsToIgnore)) {
614 $fields = array_diff_key($fields, $fieldsToIgnore);
615 CRM_Core_Session::setStatus(ts('Some of the profile fields cannot be configured for this page.'));
616 }
617 $addCaptcha = FALSE;
618
619 if (!empty($this->_fields)) {
620 $fields = @array_diff_assoc($fields, $this->_fields);
621 }
622
623 if (empty($this->_params[0]['additional_participants']) &&
624 is_null($cid)
625 ) {
626 CRM_Core_BAO_Address::checkContactSharedAddressFields($fields, $contactID);
627 }
628 $this->assign($name, $fields);
629 if (is_array($fields)) {
630 foreach ($fields as $key => $field) {
631 if ($viewOnly &&
632 isset($field['data_type']) &&
633 $field['data_type'] == 'File' || ($viewOnly && $field['name'] == 'image_URL')
634 ) {
635 // ignore file upload fields
636 continue;
637 }
638 //make the field optional if primary participant
639 //have been skip the additional participant.
640 if ($button == 'skip') {
641 $field['is_required'] = FALSE;
642 }
643 // CRM-11316 Is ReCAPTCHA enabled for this profile AND is this an anonymous visitor
644 elseif ($field['add_captcha'] && !$contactID) {
645 // only add captcha for first page
646 $addCaptcha = TRUE;
647 }
648 list($prefixName, $index) = CRM_Utils_System::explode('-', $key, 2);
649 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE, $contactID, TRUE);
650
651 $this->_fields[$key] = $field;
652 }
653 }
654
655 if ($addCaptcha && !$viewOnly) {
656 $captcha = CRM_Utils_ReCAPTCHA::singleton();
657 $captcha->add($this);
658 $this->assign('isCaptcha', TRUE);
659 }
660 }
661 }
662
663 /**
664 * @param CRM_Core_Form $form
665 * @param int $eventID
666 *
667 * @throws Exception
668 */
669 public static function initEventFee(&$form, $eventID) {
670 // get price info
671
672 // retrive all active price set fields.
673 $discountId = CRM_Core_BAO_Discount::findSet($eventID, 'civicrm_event');
674 if (property_exists($form, '_discountId') && $form->_discountId) {
675 $discountId = $form->_discountId;
676 }
677 if ($discountId) {
678 $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Core_BAO_Discount', $discountId, 'price_set_id');
679 $price = CRM_Price_BAO_PriceSet::initSet($form, $eventID, 'civicrm_event', TRUE, $priceSetId);
680 }
681 else {
682 $price = CRM_Price_BAO_PriceSet::initSet($form, $eventID, 'civicrm_event', TRUE);
683 }
684
685 if (property_exists($form, '_context') && ($form->_context == 'standalone'
686 || $form->_context == 'participant')
687 ) {
688 $discountedEvent = CRM_Core_BAO_Discount::getOptionGroup($eventID, 'civicrm_event');
689 if (is_array($discountedEvent)) {
690 foreach ($discountedEvent as $key => $priceSetId) {
691 $priceSet = CRM_Price_BAO_PriceSet::getSetDetail($priceSetId);
692 $priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
693 $form->_values['discount'][$key] = CRM_Utils_Array::value('fields', $priceSet);
694 $fieldID = key($form->_values['discount'][$key]);
695 $form->_values['discount'][$key][$fieldID]['name'] = CRM_Core_DAO::getFieldValue(
696 'CRM_Price_DAO_PriceSet',
697 $priceSetId,
698 'title'
699 );
700 }
701 }
702 }
703 $eventFee = CRM_Utils_Array::value('fee', $form->_values);
704 if (!is_array($eventFee) || empty($eventFee)) {
705 $form->_values['fee'] = array();
706 }
707
708 //fix for non-upgraded price sets.CRM-4256.
709 if (isset($form->_isPaidEvent)) {
710 $isPaidEvent = $form->_isPaidEvent;
711 }
712 else {
713 $isPaidEvent = CRM_Utils_Array::value('is_monetary', $form->_values['event']);
714 }
715 if ($isPaidEvent && empty($form->_values['fee'])) {
716 if (CRM_Utils_System::getClassName($form) != 'CRM_Event_Form_Participant') {
717 CRM_Core_Error::fatal(ts('No Fee Level(s) or Price Set is configured for this event.<br />Click <a href=\'%1\'>CiviEvent >> Manage Event >> Configure >> Event Fees</a> to configure the Fee Level(s) or Price Set for this event.', array(1 => CRM_Utils_System::url('civicrm/event/manage/fee', 'reset=1&action=update&id=' . $form->_eventId))));
718 }
719 }
720 }
721
722 /**
723 * Handle process after the confirmation of payment by User
724 *
725 * @param int $contactID
726 * @param null $contribution
727 * @param null $payment
728 *
729 * @return void
730 */
731 public function confirmPostProcess($contactID = NULL, $contribution = NULL, $payment = NULL) {
732 // add/update contact information
733 $fields = array();
734 unset($this->_params['note']);
735
736 //to avoid conflict overwrite $this->_params
737 $this->_params = $this->get('value');
738
739 //get the amount of primary participant
740 if (!empty($this->_params['is_primary'])) {
741 $this->_params['fee_amount'] = $this->get('primaryParticipantAmount');
742 }
743
744 // add participant record
745 $participant = CRM_Event_Form_Registration::addParticipant($this, $contactID);
746 $this->_participantIDS[] = $participant->id;
747
748 //setting register_by_id field and primaryContactId
749 if (!empty($this->_params['is_primary'])) {
750 $this->set('registerByID', $participant->id);
751 $this->set('primaryContactId', $contactID);
752
753 // CRM-10032
754 $this->processFirstParticipant($participant->id);
755 }
756
757 CRM_Core_BAO_CustomValueTable::postProcess($this->_params,
758 CRM_Core_DAO::$_nullArray,
759 'civicrm_participant',
760 $participant->id,
761 'Participant'
762 );
763
764 $createPayment = (CRM_Utils_Array::value('amount', $this->_params, 0) != 0) ? TRUE : FALSE;
765
766 // force to create zero amount payment, CRM-5095
767 // we know the amout is zero since createPayment is false
768 if (!$createPayment &&
769 (isset($contribution) && $contribution->id) &&
770 $this->_priceSetId &&
771 $this->_lineItem
772 ) {
773 $createPayment = TRUE;
774 }
775
776 if ($createPayment && $this->_values['event']['is_monetary'] && !empty($this->_params['contributionID'])) {
777 $paymentParams = array(
778 'participant_id' => $participant->id,
779 'contribution_id' => $contribution->id,
780 );
781 $ids = array();
782 $paymentPartcipant = CRM_Event_BAO_ParticipantPayment::create($paymentParams, $ids);
783 }
784
785 //set only primary participant's params for transfer checkout.
786 if (($this->_contributeMode == 'checkout' || $this->_contributeMode == 'notify') && !empty($this->_params['is_primary'])) {
787 $this->_params['participantID'] = $participant->id;
788 $this->set('primaryParticipant', $this->_params);
789 }
790
791 $this->assign('action', $this->_action);
792
793 // create CMS user
794 if (!empty($this->_params['cms_create_account'])) {
795 $this->_params['contactID'] = $contactID;
796
797 if (array_key_exists('email-5', $this->_params)) {
798 $mail = 'email-5';
799 }
800 else {
801 foreach ($this->_params as $name => $dontCare) {
802 if (substr($name, 0, 5) == 'email') {
803 $mail = $name;
804 break;
805 }
806 }
807 }
808
809 // we should use primary email for
810 // 1. free event registration.
811 // 2. pay later participant.
812 // 3. waiting list participant.
813 // 4. require approval participant.
814 if (!empty($this->_params['is_pay_later']) ||
815 $this->_allowWaitlist || $this->_requireApproval || empty($this->_values['event']['is_monetary'])
816 ) {
817 $mail = 'email-Primary';
818 }
819
820 if (!CRM_Core_BAO_CMSUser::create($this->_params, $mail)) {
821 CRM_Core_Error::statusBounce(ts('Your profile is not saved and Account is not created.'));
822 }
823 }
824 }
825
826 /**
827 * Process the participant
828 *
829 * @param array $params
830 * @param int $contactID
831 *
832 * @return void
833 */
834 public static function addParticipant(&$form, $contactID) {
835 if (empty($form->_params)) {
836 return;
837 }
838 $params = $form->_params;
839 $transaction = new CRM_Core_Transaction();
840
841 $groupName = 'participant_role';
842 $query = "
843 SELECT v.label as label ,v.value as value
844 FROM civicrm_option_value v,
845 civicrm_option_group g
846 WHERE v.option_group_id = g.id
847 AND g.name = %1
848 AND v.is_active = 1
849 AND g.is_active = 1
850 ";
851 $p = array(1 => array($groupName, 'String'));
852
853 $dao = CRM_Core_DAO::executeQuery($query, $p);
854 if ($dao->fetch()) {
855 $roleID = $dao->value;
856 }
857
858 // handle register date CRM-4320
859 $registerDate = NULL;
860 if (!empty($form->_allowConfirmation) && $form->_participantId) {
861 $registerDate = $params['participant_register_date'];
862 }
863 elseif (!empty($params['participant_register_date']) &&
864 is_array($params['participant_register_date']) &&
865 !empty($params['participant_register_date'])
866 ) {
867 $registerDate = CRM_Utils_Date::format($params['participant_register_date']);
868 }
869
870 $participantFields = CRM_Event_DAO_Participant::fields();
871 $participantParams = array(
872 'id' => CRM_Utils_Array::value('participant_id', $params),
873 'contact_id' => $contactID,
874 'event_id' => $form->_eventId ? $form->_eventId : $params['event_id'],
875 'status_id' => CRM_Utils_Array::value('participant_status',
876 $params, 1
877 ),
878 'role_id' => CRM_Utils_Array::value('participant_role_id',
879 $params, $roleID
880 ),
881 'register_date' => ($registerDate) ? $registerDate : date('YmdHis'),
882 'source' => CRM_Utils_String::ellipsify(
883 isset($params['participant_source']) ?
884 CRM_Utils_Array::value('participant_source', $params) : CRM_Utils_Array::value('description', $params),
885 $participantFields['participant_source']['maxlength']
886 ),
887 'fee_level' => CRM_Utils_Array::value('amount_level', $params),
888 'is_pay_later' => CRM_Utils_Array::value('is_pay_later', $params, 0),
889 'fee_amount' => CRM_Utils_Array::value('fee_amount', $params),
890 'registered_by_id' => CRM_Utils_Array::value('registered_by_id', $params),
891 'discount_id' => CRM_Utils_Array::value('discount_id', $params),
892 'fee_currency' => CRM_Utils_Array::value('currencyID', $params),
893 'campaign_id' => CRM_Utils_Array::value('campaign_id', $params),
894 );
895
896 if ($form->_action & CRM_Core_Action::PREVIEW || CRM_Utils_Array::value('mode', $params) == 'test') {
897 $participantParams['is_test'] = 1;
898 }
899 else {
900 $participantParams['is_test'] = 0;
901 }
902
903 if (!empty($form->_params['note'])) {
904 $participantParams['note'] = $form->_params['note'];
905 }
906 elseif (!empty($form->_params['participant_note'])) {
907 $participantParams['note'] = $form->_params['participant_note'];
908 }
909
910 // reuse id if one already exists for this one (can happen
911 // with back button being hit etc)
912 if (!$participantParams['id'] && !empty($params['contributionID'])) {
913 $pID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
914 $params['contributionID'],
915 'participant_id',
916 'contribution_id'
917 );
918 $participantParams['id'] = $pID;
919 }
920 $participantParams['discount_id'] = CRM_Core_BAO_Discount::findSet($form->_eventId, 'civicrm_event');
921
922 if (!$participantParams['discount_id']) {
923 $participantParams['discount_id'] = "null";
924 }
925
926 $participant = CRM_Event_BAO_Participant::create($participantParams);
927
928 $transaction->commit();
929
930 return $participant;
931 }
932
933 /* Calculate the total participant count as per params.
934 *
935 * @param array $params
936 * User params.
937 *
938 * @return $totalCount total participant count.
939 */
940 /**
941 * @param CRM_Core_Form $form
942 * @param array $params
943 * @param bool $skipCurrent
944 *
945 * @return int|string
946 */
947 public static function getParticipantCount(&$form, $params, $skipCurrent = FALSE) {
948 $totalCount = 0;
949 if (!is_array($params) || empty($params)) {
950 return $totalCount;
951 }
952
953 $priceSetId = $form->get('priceSetId');
954 $addParticipantNum = substr($form->_name, 12);
955 $priceSetFields = $priceSetDetails = array();
956 $hasPriceFieldsCount = FALSE;
957 if ($priceSetId) {
958 $priceSetDetails = $form->get('priceSet');
959 if (isset($priceSetDetails['optionsCountTotal'])
960 && $priceSetDetails['optionsCountTotal']
961 ) {
962 $hasPriceFieldsCount = TRUE;
963 $priceSetFields = $priceSetDetails['optionsCountDetails']['fields'];
964 }
965 }
966
967 $singleFormParams = FALSE;
968 foreach ($params as $key => $val) {
969 if (!is_numeric($key)) {
970 $singleFormParams = TRUE;
971 break;
972 }
973 }
974
975 //first format the params.
976 if ($singleFormParams) {
977 $params = self::formatPriceSetParams($form, $params);
978 $params = array($params);
979 }
980
981 foreach ($params as $key => $values) {
982 if (!is_numeric($key) ||
983 $values == 'skip' ||
984 ($skipCurrent && ($addParticipantNum == $key))
985 ) {
986 continue;
987 }
988 $count = 1;
989
990 $usedCache = FALSE;
991 $cacheCount = CRM_Utils_Array::value($key, $form->_lineItemParticipantsCount);
992 if ($cacheCount && is_numeric($cacheCount)) {
993 $count = $cacheCount;
994 $usedCache = TRUE;
995 }
996
997 if (!$usedCache && $hasPriceFieldsCount) {
998 $count = 0;
999 foreach ($values as $valKey => $value) {
1000 if (strpos($valKey, 'price_') === FALSE) {
1001 continue;
1002 }
1003 $priceFieldId = substr($valKey, 6);
1004 if (!$priceFieldId ||
1005 !is_array($value) ||
1006 !array_key_exists($priceFieldId, $priceSetFields)
1007 ) {
1008 continue;
1009 }
1010 foreach ($value as $optId => $optVal) {
1011 $currentCount = $priceSetFields[$priceFieldId]['options'][$optId] * $optVal;
1012 if ($currentCount) {
1013 $count += $currentCount;
1014 }
1015 }
1016 }
1017 if (!$count) {
1018 $count = 1;
1019 }
1020 }
1021 $totalCount += $count;
1022 }
1023 if (!$totalCount) {
1024 $totalCount = 1;
1025 }
1026
1027 return $totalCount;
1028 }
1029
1030 /* Format user submitted price set params.
1031 * Convert price set each param as an array.
1032 *
1033 * @param array $params
1034 * An array of user submitted params.
1035 *
1036 *
1037 * @return array
1038 * , formatted price set params.
1039 */
1040 /**
1041 * @param CRM_Core_Form $form
1042 * @param array $params
1043 *
1044 * @return mixed
1045 */
1046 public static function formatPriceSetParams(&$form, $params) {
1047 if (!is_array($params) || empty($params)) {
1048 return $params;
1049 }
1050
1051 $priceSetId = $form->get('priceSetId');
1052 if (!$priceSetId) {
1053 return $params;
1054 }
1055 $priceSetDetails = $form->get('priceSet');
1056
1057 foreach ($params as $key => & $value) {
1058 $vals = array();
1059 if (strpos($key, 'price_') !== FALSE) {
1060 $fieldId = substr($key, 6);
1061 if (!array_key_exists($fieldId, $priceSetDetails['fields']) ||
1062 is_array($value) ||
1063 !$value
1064 ) {
1065 continue;
1066 }
1067 $field = $priceSetDetails['fields'][$fieldId];
1068 if ($field['html_type'] == 'Text') {
1069 $fieldOption = current($field['options']);
1070 $value = array($fieldOption['id'] => $value);
1071 }
1072 else {
1073 $value = array($value => TRUE);
1074 }
1075 }
1076 }
1077
1078 return $params;
1079 }
1080
1081 /* Calculate total count for each price set options.
1082 * those are currently selected by user.
1083 *
1084 * @param $form
1085 * Form object.
1086 *
1087 *
1088 * @return array
1089 * , array of each option w/ count total.
1090 */
1091 /**
1092 * @param $form
1093 *
1094 * @return array
1095 */
1096 public static function getPriceSetOptionCount(&$form) {
1097 $params = $form->get('params');
1098 $priceSet = $form->get('priceSet');
1099 $priceSetId = $form->get('priceSetId');
1100
1101 $optionsCount = array();
1102 if (!$priceSetId ||
1103 !is_array($priceSet) ||
1104 empty($priceSet) ||
1105 !is_array($params) ||
1106 empty($params)
1107 ) {
1108 return $optionsCount;
1109 }
1110
1111 $priceSetFields = $priceMaxFieldDetails = array();
1112 if (!empty($priceSet['optionsCountTotal'])) {
1113 $priceSetFields = $priceSet['optionsCountDetails']['fields'];
1114 }
1115
1116 if (!empty($priceSet['optionsMaxValueTotal'])) {
1117 $priceMaxFieldDetails = $priceSet['optionsMaxValueDetails']['fields'];
1118 }
1119
1120 $addParticipantNum = substr($form->_name, 12);
1121 foreach ($params as $pCnt => $values) {
1122 if ($values == 'skip' ||
1123 $pCnt === $addParticipantNum
1124 ) {
1125 continue;
1126 }
1127
1128 foreach ($values as $valKey => $value) {
1129 if (strpos($valKey, 'price_') === FALSE) {
1130 continue;
1131 }
1132
1133 $priceFieldId = substr($valKey, 6);
1134 if (!$priceFieldId ||
1135 !is_array($value) ||
1136 !(array_key_exists($priceFieldId, $priceSetFields) || array_key_exists($priceFieldId, $priceMaxFieldDetails))
1137 ) {
1138 continue;
1139 }
1140
1141 foreach ($value as $optId => $optVal) {
1142 if (CRM_Utils_Array::value('html_type', $priceSet['fields'][$priceFieldId]) == 'Text') {
1143 $currentCount = $optVal;
1144 }
1145 else {
1146 $currentCount = 1;
1147 }
1148
1149 if (isset($priceSetFields[$priceFieldId]) && isset($priceSetFields[$priceFieldId]['options'][$optId])) {
1150 $currentCount = $priceSetFields[$priceFieldId]['options'][$optId] * $optVal;
1151 }
1152
1153 $optionsCount[$optId] = $currentCount + CRM_Utils_Array::value($optId, $optionsCount, 0);
1154 }
1155 }
1156 }
1157
1158 return $optionsCount;
1159 }
1160
1161 /**
1162 * @param string $suffix
1163 *
1164 * @return null|string
1165 */
1166 public function checkTemplateFileExists($suffix = '') {
1167 if ($this->_eventId) {
1168 $templateName = $this->_name;
1169 if (substr($templateName, 0, 12) == 'Participant_') {
1170 $templateName = 'AdditionalParticipant';
1171 }
1172
1173 $templateFile = "CRM/Event/Form/Registration/{$this->_eventId}/{$templateName}.{$suffix}tpl";
1174 $template = CRM_Core_Form::getTemplate();
1175 if ($template->template_exists($templateFile)) {
1176 return $templateFile;
1177 }
1178 }
1179 return NULL;
1180 }
1181
1182 /**
1183 * @return null|string
1184 */
1185 public function getTemplateFileName() {
1186 $fileName = $this->checkTemplateFileExists();
1187 return $fileName ? $fileName : parent::getTemplateFileName();
1188 }
1189
1190 /**
1191 * @return null|string
1192 */
1193 public function overrideExtraTemplateFileName() {
1194 $fileName = $this->checkTemplateFileExists('extra.');
1195 return $fileName ? $fileName : parent::overrideExtraTemplateFileName();
1196 }
1197
1198 /**
1199 * Validate price set submitted params for price option limit,
1200 * as well as user should select at least one price field option.
1201 *
1202 * @param CRM_Core_Form $form
1203 * @param array $params
1204 *
1205 * @return array
1206 */
1207 public static function validatePriceSet(&$form, $params) {
1208 $errors = array();
1209 $hasOptMaxValue = FALSE;
1210 if (!is_array($params) || empty($params)) {
1211 return $errors;
1212 }
1213
1214 $currentParticipantNum = substr($form->_name, 12);
1215 if (!$currentParticipantNum) {
1216 $currentParticipantNum = 0;
1217 }
1218
1219 $priceSetId = $form->get('priceSetId');
1220 $priceSetDetails = $form->get('priceSet');
1221 if (
1222 !$priceSetId ||
1223 !is_array($priceSetDetails) ||
1224 empty($priceSetDetails)
1225 ) {
1226 return $errors;
1227 }
1228
1229 $optionsCountDetails = $optionsMaxValueDetails = array();
1230 if (
1231 isset($priceSetDetails['optionsMaxValueTotal'])
1232 && $priceSetDetails['optionsMaxValueTotal']
1233 ) {
1234 $hasOptMaxValue = TRUE;
1235 $optionsMaxValueDetails = $priceSetDetails['optionsMaxValueDetails']['fields'];
1236 }
1237 if (
1238 isset($priceSetDetails['optionsCountTotal'])
1239 && $priceSetDetails['optionsCountTotal']
1240 ) {
1241 $hasOptCount = TRUE;
1242 $optionsCountDetails = $priceSetDetails['optionsCountDetails']['fields'];
1243 }
1244 $feeBlock = $form->_feeBlock;
1245
1246 if (empty($feeBlock)) {
1247 $feeBlock = $priceSetDetails['fields'];
1248 }
1249
1250 $optionMaxValues = $fieldSelected = array();
1251 foreach ($params as $pNum => $values) {
1252 if (!is_array($values) || $values == 'skip') {
1253 continue;
1254 }
1255
1256 foreach ($values as $valKey => $value) {
1257 if (strpos($valKey, 'price_') === FALSE) {
1258 continue;
1259 }
1260 $priceFieldId = substr($valKey, 6);
1261 $noneOptionValueSelected = FALSE;
1262 if (!$feeBlock[$priceFieldId]['is_required'] && $value == 0) {
1263 $noneOptionValueSelected = TRUE;
1264 }
1265
1266 if (
1267 !$priceFieldId ||
1268 (!$noneOptionValueSelected && !is_array($value))
1269 ) {
1270 continue;
1271 }
1272
1273 $fieldSelected[$pNum] = TRUE;
1274
1275 if (!$hasOptMaxValue || !is_array($value)) {
1276 continue;
1277 }
1278
1279 foreach ($value as $optId => $optVal) {
1280 if (CRM_Utils_Array::value('html_type', $feeBlock[$priceFieldId]) == 'Text') {
1281 $currentMaxValue = $optVal;
1282 }
1283 else {
1284 $currentMaxValue = 1;
1285 }
1286
1287 if (isset($optionsCountDetails[$priceFieldId]) && isset($optionsCountDetails[$priceFieldId]['options'][$optId])) {
1288 $currentMaxValue = $optionsCountDetails[$priceFieldId]['options'][$optId] * $optVal;
1289 }
1290 if (empty($optionMaxValues)) {
1291 $optionMaxValues[$priceFieldId][$optId] = $currentMaxValue;
1292 }
1293 else {
1294 $optionMaxValues[$priceFieldId][$optId] =
1295 $currentMaxValue + CRM_Utils_Array::value($optId, CRM_Utils_Array::value($priceFieldId, $optionMaxValues), 0);
1296 }
1297
1298 }
1299 }
1300 }
1301
1302 //validate for option max value.
1303 foreach ($optionMaxValues as $fieldId => $values) {
1304 $options = CRM_Utils_Array::value('options', $feeBlock[$fieldId], array());
1305 foreach ($values as $optId => $total) {
1306 $optMax = $optionsMaxValueDetails[$fieldId]['options'][$optId];
1307 $opDbCount = CRM_Utils_Array::value('db_total_count', $options[$optId], 0);
1308 $total += $opDbCount;
1309 if ($optMax && $total > $optMax) {
1310 $errors['soldOutOptions'][] = ts('Option %1 has sold out.', array(1 => $feeBlock[$fieldId]['options'][$optId]['label']));
1311 if ($opDbCount && ($opDbCount >= $optMax)) {
1312 $errors[$currentParticipantNum]["price_{$fieldId}"] =
1313 ts('Sorry, this option is currently sold out.');
1314 }
1315 elseif (($optMax - $opDbCount) == 1) {
1316 $errors[$currentParticipantNum]["price_{$fieldId}"] =
1317 ts('Sorry, currently only a single seat is available for this option.', array(1 => ($optMax - $opDbCount)));
1318 }
1319 else {
1320 $errors[$currentParticipantNum]["price_{$fieldId}"] =
1321 ts('Sorry, currently only %1 seats are available for this option.', array(1 => ($optMax - $opDbCount)));
1322 }
1323 }
1324 }
1325 }
1326
1327 //validate for price field selection.
1328 foreach ($params as $pNum => $values) {
1329 if (!is_array($values) || $values == 'skip') {
1330 continue;
1331 }
1332 if (empty($fieldSelected[$pNum])) {
1333 $errors[$pNum]['_qf_default'] = ts('Select at least one option from Event Fee(s).');
1334 }
1335 }
1336
1337 return $errors;
1338 }
1339
1340 /**
1341 * set the first participant ID if not set, CRM-10032
1342 *
1343 * @param int $participantID
1344 */
1345 public function processFirstParticipant($participantID) {
1346 $this->_participantId = $participantID;
1347 $this->set('participantId', $this->_participantId);
1348
1349 $ids = $participantValues = array();
1350 $participantParams = array('id' => $this->_participantId);
1351 CRM_Event_BAO_Participant::getValues($participantParams, $participantValues, $ids);
1352 $this->_values['participant'] = $participantValues[$this->_participantId];
1353 $this->set('values', $this->_values);
1354
1355 // also set the allow confirmation stuff
1356 if (array_key_exists(
1357 $this->_values['participant']['status_id'],
1358 CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Pending'")
1359 )) {
1360 $this->_allowConfirmation = TRUE;
1361 $this->set('allowConfirmation', TRUE);
1362 }
1363 }
1364
1365 /**
1366 * @todo - combine this with CRM_Event_BAO_Event::validRegistrationRequest
1367 * (probably extract relevant values here & call that with them & handle bounces & redirects here -as
1368 * those belong in the form layer)
1369 *
1370 * @param string $redirect
1371 */
1372 public function checkValidEvent($redirect = NULL) {
1373 // is the event active (enabled)?
1374 if (!$this->_values['event']['is_active']) {
1375 // form is inactive, die a fatal death
1376 CRM_Core_Error::statusBounce(ts('The event you requested is currently unavailable (contact the site administrator for assistance).'));
1377 }
1378
1379 // is online registration is enabled?
1380 if (!$this->_values['event']['is_online_registration']) {
1381 CRM_Core_Error::statusBounce(ts('Online registration is not currently available for this event (contact the site administrator for assistance).'), $redirect);
1382 }
1383
1384 // is this an event template ?
1385 if (!empty($this->_values['event']['is_template'])) {
1386 CRM_Core_Error::statusBounce(ts('Event templates are not meant to be registered.'), $redirect);
1387 }
1388
1389 $now = date('YmdHis');
1390 $startDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('registration_start_date',
1391 $this->_values['event']
1392 ));
1393
1394 if (
1395 $startDate &&
1396 $startDate >= $now
1397 ) {
1398 CRM_Core_Error::statusBounce(ts('Registration for this event begins on %1', array(1 => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('registration_start_date', $this->_values['event'])))), $redirect);
1399 }
1400
1401 $endDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('registration_end_date',
1402 $this->_values['event']
1403 ));
1404 $eventEndDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('event_end_date', $this->_values['event']));
1405 if (
1406 $endDate &&
1407 $endDate < $now
1408 ) {
1409 CRM_Core_Error::statusBounce(ts('Registration for this event ended on %1', array(1 => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('registration_end_date', $this->_values['event'])))), $redirect);
1410 }
1411 if (!empty($eventEndDate) && $eventEndDate < $now) {
1412 CRM_Core_Error::statusBounce(ts('Event ended on %1', array(1 => CRM_Utils_Date::customFormat(CRM_Utils_Array::value('event_end_date', $this->_values['event'])))), $redirect);
1413 }
1414 }
1415 }