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