Merge pull request #3116 from jitendrapurohit/Report_Webtest
[civicrm-core.git] / CRM / Event / Form / Registration / Register.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36
37/**
38 * This class generates form components for processing Event
39 *
40 */
41class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration {
42
43 /**
44 * The fields involved in this page
45 *
46 */
47 public $_fields;
48
49 /**
50 * The defaults involved in this page
51 *
52 */
53 public $_defaults;
54
55 /**
56 * The status message that user view.
57 *
58 */
59 protected $_waitlistMsg = NULL;
60 protected $_requireApprovalMsg = NULL;
61
62 public $_quickConfig = NULL;
63
64 /**
65 * Allow deveopera to use hook_civicrm_buildForm()
66 * to override the registration dupe check
67 * CRM-7604
68 */
69 public $_skipDupeRegistrationCheck = FALSE;
70
7bf9cde2
CW
71 public $_ppType;
72 public $_snippet;
6a488035 73
16d1c8e2 74 /**
75 * @var boolean determines if fee block should be shown or hidden
76 */
77 public $_noFees;
78
6a488035
TO
79 /**
80 * Function to set variables up before form is built
81 *
82 * @return void
83 * @access public
84 */
85 function preProcess() {
86 parent::preProcess();
7bf9cde2 87
6a488035
TO
88 //CRM-4320.
89 //here we can't use parent $this->_allowWaitlist as user might
90 //walk back and we maight set this value in this postProcess.
91 //(we set when spaces < group count and want to allow become part of waiting )
6a488035
TO
92 $eventFull = CRM_Event_BAO_Participant::eventFull($this->_eventId, FALSE, CRM_Utils_Array::value('has_waitlist', $this->_values['event']));
93
b6a469c5
CW
94 // Get payment processors if appropriate for this event
95 // We hide the payment fields if the event is full or requires approval,
96 // and the current user has not yet been approved CRM-12279
16d1c8e2 97 $this->_noFees = (($eventFull || $this->_requireApproval) && !$this->_allowConfirmation);
98 CRM_Contribute_Form_Contribution_Main::preProcessPaymentOptions($this, $this->_noFees);
b6a469c5
CW
99 if ($this->_snippet) {
100 return;
101 }
102
6a488035 103 $this->_allowWaitlist = FALSE;
8cc574cf 104 if ($eventFull && !$this->_allowConfirmation && !empty($this->_values['event']['has_waitlist'])) {
6a488035
TO
105 $this->_allowWaitlist = TRUE;
106 $this->_waitlistMsg = CRM_Utils_Array::value('waitlist_text', $this->_values['event']);
107 if (!$this->_waitlistMsg) {
108 $this->_waitlistMsg = ts('This event is currently full. However you can register now and get added to a waiting list. You will be notified if spaces become available.');
109 }
110 }
111 $this->set('allowWaitlist', $this->_allowWaitlist);
112
113 //To check if the user is already registered for the event(CRM-2426)
114 if (!$this->_skipDupeRegistrationCheck) {
115 self::checkRegistration(NULL, $this);
116 }
117
118 $this->assign('availableRegistrations', $this->_availableRegistrations);
119
120 // get the participant values from EventFees.php, CRM-4320
121 if ($this->_allowConfirmation) {
122 CRM_Event_Form_EventFees::preProcess($this);
123 }
6a488035
TO
124 }
125
126 /**
127 * This function sets the default values for the form. For edit/view mode
128 * the default values are retrieved from the database
c4c5b5fe 129 * Adding discussion from CRM-11915 as code comments
130 * When multiple payment processors are configured for a event and user does any selection changes for them on online event registeration page :
131 * The 'Register' page gets loaded through ajax and following happens :
132 * the setDefaults function is called with the variable _ppType set with selected payment processor type,
133 * so in the 'if' condition checked whether the selected payment processor's billing mode is of 'billing form mode'. If its not, don't setDefaults for billing form and return instead.
134 *- For payment processors of billing mode 'Notify' - return from setDefaults before the code for billing profile population execution .
135 * (done this is because for payment processors with 'Notify' mode billing profile form doesn't get rendered on UI)
6a488035
TO
136 *
137 * @access public
138 *
355ba699 139 * @return void
6a488035
TO
140 */
141 function setDefaultValues() {
7bf9cde2 142 if ($this->_ppType && $this->_snippet && !($this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_FORM)) {
c4c5b5fe 143 // see function comment block for explanation of this
6a488035
TO
144 return;
145 }
2ab5ff1d 146 $this->_defaults = array();
5c280496 147 $contactID = $this->getContactID();
5e9b1f4d 148 $billingDefaults = $this->getProfileDefaults('Billing', $contactID);
149 $this->_defaults = array_merge($this->_defaults, $billingDefaults);
150
6a488035
TO
151 $config = CRM_Core_Config::singleton();
152 // set default country from config if no country set
5e9b1f4d 153 // note the effect of this is to set the billing country to default to the site default
154 // country if the person has an address but no country (for anonymous country is set above)
155 // this could have implications if the billing profile is filled but hidden.
156 // this behaviour has been in place for a while but the use of js to hide things has increased
a7488080 157 if (empty($this->_defaults["billing_country_id-{$this->_bltID}"])) {
6a488035
TO
158 $this->_defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
159 }
160
a28e436f 161 // set default state/province from config if no state/province set
a7488080 162 if (empty($this->_defaults["billing_state_province_id-{$this->_bltID}"])) {
a28e436f 163 $this->_defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
164 }
165
ba0cb925 166 if ($this->_snippet) {
30e98924
KJ
167 // now fix all state country selectors
168 CRM_Core_BAO_Address::fixAllStateSelects($this, $this->_defaults);
6a488035
TO
169 return $this->_defaults;
170 }
171
172 if ($contactID) {
173 $options = array();
174 $fields = array();
175
176 if (!empty($this->_fields)) {
177 $removeCustomFieldTypes = array('Participant');
178 foreach ($this->_fields as $name => $dontCare) {
179 if (substr($name, 0, 7) == 'custom_') {
180 $id = substr($name, 7);
181 if (!$this->_allowConfirmation &&
182 !CRM_Core_BAO_CustomGroup::checkCustomField($id, $removeCustomFieldTypes)
183 ) {
184 continue;
185 }
186 // ignore component fields
187 }
188 elseif ((substr($name, 0, 12) == 'participant_')) {
189 continue;
190 }
191 $fields[$name] = 1;
192 }
193 }
194 }
3feb567a
DL
195
196 if (!empty($fields)) {
197 CRM_Core_BAO_UFGroup::setProfileDefaults($contactID, $fields, $this->_defaults);
198 }
199
30e98924
KJ
200 // now fix all state country selectors
201 CRM_Core_BAO_Address::fixAllStateSelects($this, $this->_defaults);
202
13ac605f
DG
203 // Set default payment processor as default payment_processor radio button value
204 if (!empty($this->_paymentProcessors)) {
205 foreach ($this->_paymentProcessors as $pid => $value) {
a7488080 206 if (!empty($value['is_default'])) {
13ac605f
DG
207 $this->_defaults['payment_processor'] = $pid;
208 }
209 }
210 }
211
6a488035
TO
212 //if event is monetary and pay later is enabled and payment
213 //processor is not available then freeze the pay later checkbox with
214 //default check
a7488080 215 if (!empty($this->_values['event']['is_pay_later']) &&
6a488035
TO
216 !is_array($this->_paymentProcessor)
217 ) {
218 $this->_defaults['is_pay_later'] = 1;
219 }
220
221 //set custom field defaults
222 if (!empty($this->_fields)) {
223 //load default campaign from page.
224 if (array_key_exists('participant_campaign_id', $this->_fields)) {
225 $this->_defaults['participant_campaign_id'] = CRM_Utils_Array::value('campaign_id',
226 $this->_values['event']
227 );
228 }
229
230 foreach ($this->_fields as $name => $field) {
231 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
232 // fix for CRM-1743
233 if (!isset($this->_defaults[$name])) {
234 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID, $name, $this->_defaults,
235 NULL, CRM_Profile_Form::MODE_REGISTER
236 );
237 }
238 }
239 }
240 }
241
242 //fix for CRM-3088, default value for discount set.
243 $discountId = NULL;
244 if (!empty($this->_values['discount'])) {
245 $discountId = CRM_Core_BAO_Discount::findSet($this->_eventId, 'civicrm_event');
246 if ($discountId) {
247 if (isset($this->_values['event']['default_discount_fee_id'])) {
248 $discountKey = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue',
249 $this->_values['event']['default_discount_fee_id'],
250 'weight', 'id'
251 );
252
253 $this->_defaults['amount'] = key(array_slice($this->_values['discount'][$discountId],
254 $discountKey - 1, $discountKey, TRUE
255 ));
256 }
257 }
258 }
259
260 // add this event's default participant role to defaults array
261 // (for cases where participant_role field is included in form via profile)
262 if ($this->_values['event']['default_role_id']) {
263 $this->_defaults['participant_role'] =
264 $this->_defaults['participant_role_id'] = $this->_values['event']['default_role_id'];
265 }
266 if ($this->_priceSetId && !empty($this->_feeBlock)) {
267 foreach ($this->_feeBlock as $key => $val) {
268 foreach ($val['options'] as $keys => $values) {
8cc574cf 269 if ($values['is_default'] && empty($values['is_full'])) {
6a488035
TO
270
271 if ($val['html_type'] == 'CheckBox') {
272 $this->_defaults["price_{$key}"][$keys] = 1;
273 }
274 else {
275 $this->_defaults["price_{$key}"] = $keys;
276 }
277 }
278 }
279 }
280 }
281
282 //set default participant fields, CRM-4320.
283 $hasAdditionalParticipants = FALSE;
284 if ($this->_allowConfirmation) {
285 $this->_contactId = $contactID;
286 $this->_discountId = $discountId;
287 $forcePayLater = CRM_Utils_Array::value('is_pay_later', $this->_defaults, FALSE);
288 $this->_defaults = array_merge($this->_defaults, CRM_Event_Form_EventFees::setDefaultValues($this));
289 $this->_defaults['is_pay_later'] = $forcePayLater;
290
291 if ($this->_additionalParticipantIds) {
292 $hasAdditionalParticipants = TRUE;
293 $this->_defaults['additional_participants'] = count($this->_additionalParticipantIds);
294 }
295 }
296 $this->assign('hasAdditionalParticipants', $hasAdditionalParticipants);
297
298 // //hack to simplify credit card entry for testing
299 // $this->_defaults['credit_card_type'] = 'Visa';
300 // $this->_defaults['credit_card_number'] = '4807731747657838';
301 // $this->_defaults['cvv2'] = '000';
302 // $this->_defaults['credit_card_exp_date'] = array( 'Y' => '2010', 'M' => '05' );
303
304 // to process Custom data that are appended to URL
305 $getDefaults = CRM_Core_BAO_CustomGroup::extractGetParams($this, "'Contact', 'Individual', 'Contribution', 'Participant'");
306 if (!empty($getDefaults)) {
307 $this->_defaults = array_merge($this->_defaults, $getDefaults);
308 }
309
310 return $this->_defaults;
311 }
312
313 /**
314 * Function to build the form
315 *
355ba699 316 * @return void
6a488035
TO
317 * @access public
318 */
319 public function buildQuickForm() {
4839c695
KJ
320 // build profiles first so that we can determine address fields etc
321 // and then show copy address checkbox
322 $this->buildCustom($this->_values['custom_pre_id'], 'customPre');
323 $this->buildCustom($this->_values['custom_post_id'], 'customPost');
324
7d613bb7 325 if (!empty($this->_fields) && !empty($this->_values['custom_pre_id'])) {
4839c695
KJ
326 $profileAddressFields = array();
327 foreach ($this->_fields as $key => $value) {
7d613bb7 328 CRM_Core_BAO_UFField::assignAddressField($key, $profileAddressFields, array('uf_group_id' => $this->_values['custom_pre_id'])); }
4839c695
KJ
329 $this->set('profileAddressFields', $profileAddressFields);
330 }
331
7bf9cde2 332 // Build payment processor form
6a488035 333 if ($this->_ppType) {
7bf9cde2
CW
334 CRM_Core_Payment_ProcessorForm::buildQuickForm($this);
335 // Return if we are in an ajax callback
336 if ($this->_snippet) {
337 return;
338 }
6a488035
TO
339 }
340
5c280496 341 $contactID = $this->getContactID();
6a488035 342 $this->assign('contact_id', $contactID);
178073d6 343 $this->assign('display_name', CRM_Contact_BAO_Contact::displayName($contactID));
6a488035 344
6a488035
TO
345 $this->add('hidden', 'scriptFee', NULL);
346 $this->add('hidden', 'scriptArray', NULL);
347
348 $bypassPayment = $allowGroupOnWaitlist = $isAdditionalParticipants = FALSE;
349 if ($this->_values['event']['is_multiple_registrations']) {
350 // don't allow to add additional during confirmation if not preregistered.
351 if (!$this->_allowConfirmation || $this->_additionalParticipantIds) {
352 // Hardcode maximum number of additional participants here for now. May need to make this configurable per event.
353 // Label is value + 1, since the code sees this is ADDITIONAL participants (in addition to "self")
0161a899
ML
354 $additionalOptions = array(
355 '' => '1', 1 => '2', 2 => '3', 3 => '4', 4 => '5',
356 5 => '6', 6 => '7', 7 => '8', 8 => '9', 9 => '10',
6a488035
TO
357 );
358 $element = $this->add('select', 'additional_participants',
359 ts('How many people are you registering?'),
360 $additionalOptions,
361 NULL,
362 array('onChange' => "allowParticipant()")
363 );
364 $isAdditionalParticipants = TRUE;
365 }
366 }
367
368 //hack to allow group to register w/ waiting
8cc574cf 369 if ((!empty($this->_values['event']['is_multiple_registrations']) ||
6a488035
TO
370 $this->_priceSetId
371 ) &&
372 !$this->_allowConfirmation &&
8cc574cf 373 is_numeric($this->_availableRegistrations) && !empty($this->_values['event']['has_waitlist'])) {
6a488035
TO
374 $bypassPayment = TRUE;
375 //case might be group become as a part of waitlist.
376 //If not waitlist then they require admin approve.
377 $allowGroupOnWaitlist = TRUE;
378 $this->_waitlistMsg = ts("This event has only %1 space(s) left. If you continue and register more than %1 people (including yourself ), the whole group will be wait listed. Or, you can reduce the number of people you are registering to %1 to avoid being put on the waiting list.", array(1 => $this->_availableRegistrations));
379
380 if ($this->_requireApproval) {
381 $this->_requireApprovalMsg = CRM_Utils_Array::value('approval_req_text', $this->_values['event'],
382 ts('Registration for this event requires approval. Once your registration(s) have been reviewed, you will receive an email with a link to a web page where you can complete the registration process.')
383 );
384 }
385 }
386
387 //case where only approval needed - no waitlist.
388 if ($this->_requireApproval &&
389 !$this->_allowWaitlist && !$bypassPayment
390 ) {
391 $this->_requireApprovalMsg = CRM_Utils_Array::value('approval_req_text', $this->_values['event'],
392 ts('Registration for this event requires approval. Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.')
393 );
394 }
395
396 //lets display status to primary page only.
397 $this->assign('waitlistMsg', $this->_waitlistMsg);
398 $this->assign('requireApprovalMsg', $this->_requireApprovalMsg);
399 $this->assign('allowGroupOnWaitlist', $allowGroupOnWaitlist);
400 $this->assign('isAdditionalParticipants', $isAdditionalParticipants);
401
6a488035
TO
402 //lets get js on two different qf elements.
403 $showHidePayfieldName = NULL;
404 $showHidePaymentInformation = FALSE;
405 if ($this->_values['event']['is_monetary']) {
406 self::buildAmount($this);
407 }
408
596bff78 409 $pps = array();
410 //@todo this processor adding fn is another one duplicated on contribute - a shared
411 // common class would make this sort of thing extractable
cf6a124f 412 $onlinePaymentProcessorEnabled = FALSE;
6a488035 413 if (!empty($this->_paymentProcessors)) {
596bff78 414 foreach ($this->_paymentProcessors as $key => $name) {
415 if($name['billing_mode'] == 1) {
416 $onlinePaymentProcessorEnabled = TRUE;
417 }
6a488035
TO
418 $pps[$key] = $name['name'];
419 }
420 }
e1ce628e 421 if($this->getContactID() === '0' && !$this->_values['event']['is_multiple_registrations']) {
422 //@todo we are blocking for multiple registrations because we haven't tested
596bff78 423 $this->addCidZeroOptions($onlinePaymentProcessorEnabled);
424 }
a7488080 425 if (!empty($this->_values['event']['is_pay_later']) &&
6a488035
TO
426 ($this->_allowConfirmation || (!$this->_requireApproval && !$this->_allowWaitlist))
427 ) {
428 $pps[0] = $this->_values['event']['pay_later_text'];
429 }
430
431 if ($this->_values['event']['is_monetary']) {
432 if (count($pps) > 1) {
433 $this->addRadio('payment_processor', ts('Payment Method'), $pps,
fdf1844b 434 NULL, "&nbsp;"
6a488035
TO
435 );
436 }
437 elseif (!empty($pps)) {
438 $ppKeys = array_keys($pps);
439 $currentPP = array_pop($ppKeys);
440 $this->addElement('hidden', 'payment_processor', $currentPP);
441 }
442 }
443
444 //lets add some qf element to bypass payment validations, CRM-4320
445 if ($bypassPayment) {
446 $this->addElement('hidden', 'bypass_payment', NULL, array('id' => 'bypass_payment'));
447 }
448 $this->assign('bypassPayment', $bypassPayment);
449 $this->assign('showHidePaymentInformation', $showHidePaymentInformation);
450
5c280496 451 $userID = $this->getContactID();
6a488035
TO
452
453 if (!$userID) {
454 $createCMSUser = FALSE;
455
456 if ($this->_values['custom_pre_id']) {
457 $profileID = $this->_values['custom_pre_id'];
458 $createCMSUser = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_cms_user');
459 }
460
461 if (!$createCMSUser &&
462 $this->_values['custom_post_id']
463 ) {
464 if (!is_array($this->_values['custom_post_id'])) {
465 $profileIDs = array($this->_values['custom_post_id']);
466 }
467 else {
468 $profileIDs = $this->_values['custom_post_id'];
469 }
470 foreach ($profileIDs as $pid) {
471 if (CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $pid, 'is_cms_user')) {
472 $profileID = $pid;
473 $createCMSUser = TRUE;
474 break;
475 }
476 }
477 }
478
479 if ($createCMSUser) {
480 CRM_Core_BAO_CMSUser::buildForm($this, $profileID, TRUE);
481 }
482 }
483
484 //we have to load confirm contribution button in template
485 //when multiple payment processor as the user
486 //can toggle with payment processor selection
487 $billingModePaymentProcessors = 0;
488 if (!CRM_Utils_System::isNull($this->_paymentProcessors)) {
489 foreach ($this->_paymentProcessors as $key => $values) {
490 if ($values['billing_mode'] == CRM_Core_Payment::BILLING_MODE_BUTTON) {
491 $billingModePaymentProcessors++;
492 }
493 }
494 }
495
496 if ($billingModePaymentProcessors && count($this->_paymentProcessors) == $billingModePaymentProcessors) {
497 $allAreBillingModeProcessors = TRUE;
498 } else {
499 $allAreBillingModeProcessors = FALSE;
500 }
501
8cc574cf 502 if (!$allAreBillingModeProcessors || !empty($this->_values['event']['is_pay_later']) || $bypassPayment
6a488035
TO
503 ) {
504
505 //freeze button to avoid multiple calls.
506 $js = NULL;
507
a7488080 508 if (empty($this->_values['event']['is_monetary'])) {
6a488035
TO
509 $js = array('onclick' => "return submitOnce(this,'" . $this->_name . "','" . ts('Processing') . "');");
510 }
1909126f 511
512 // CRM-11182 - Optional confirmation screen
513 // Change button label depending on whether the next action is confirm or register
514 if (
515 !$this->_values['event']['is_multiple_registrations']
516 && !$this->_values['event']['is_confirm_enabled']
517 ) {
518 $buttonLabel = ts('Register >>');
519 } else {
520 $buttonLabel = ts('Continue >>');
521 }
522
6a488035
TO
523 $this->addButtons(array(
524 array(
525 'type' => 'upload',
1909126f 526 'name' => $buttonLabel,
6a488035
TO
527 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
528 'isDefault' => TRUE,
529 'js' => $js,
530 ),
531 )
532 );
533 }
534
535 $this->addFormRule(array('CRM_Event_Form_Registration_Register', 'formRule'), $this);
536
537 // add pcp fields
538 if ($this->_pcpId) {
539 CRM_PCP_BAO_PCP::buildPcp($this->_pcpId, $this);
540 }
541 }
542
543 /**
544 * build the radio/text form elements for the amount field
545 *
546 * @param object $form form object
547 * @param boolean $required true if you want to add formRule
548 * @param int $discountId discount id for the event
549 *
550 * @return void
551 * @access public
552 * @static
553 */
554 static public function buildAmount(&$form, $required = TRUE, $discountId = NULL) {
16d1c8e2 555 // build amount only when needed, skip incase of event full and waitlisting is enabled
556 // and few other conditions check preProcess()
a2a1e950 557 if (property_exists($form, '_noFees') && $form->_noFees) {
16d1c8e2 558 return;
559 }
560
6a488035 561 //if payment done, no need to build the fee block.
7bf9cde2 562 if (!empty($form->_paymentId)) {
b6e641a4 563 //fix to display line item in update mode.
6a488035
TO
564 $form->assign('priceSet', isset($form->_priceSet) ? $form->_priceSet : NULL);
565 return;
566 }
567
568 $feeFields = CRM_Utils_Array::value('fee', $form->_values);
569
570 if (is_array($feeFields)) {
571 $form->_feeBlock = &$form->_values['fee'];
572 }
573
574 //check for discount.
575 $discountedFee = CRM_Utils_Array::value('discount', $form->_values);
576 if (is_array($discountedFee) && !empty($discountedFee)) {
577 if (!$discountId) {
578 $form->_discountId = $discountId = CRM_Core_BAO_Discount::findSet($form->_eventId, 'civicrm_event');
579 }
580 if ($discountId) {
581 $form->_feeBlock = &$form->_values['discount'][$discountId];
582 }
583 }
584 if (!is_array($form->_feeBlock)) {
585 $form->_feeBlock = array();
586 }
587
588 //its time to call the hook.
589 CRM_Utils_Hook::buildAmount('event', $form, $form->_feeBlock);
590
591 //reset required if participant is skipped.
592 $button = substr($form->controller->getButtonName(), -4);
593 if ($required && $button == 'skip') {
594 $required = FALSE;
595 }
596
597 $className = CRM_Utils_System::getClassName($form);
598
599 //build the priceset fields.
600 if (isset($form->_priceSetId) && $form->_priceSetId) {
601
602 //format price set fields across option full.
603 self::formatFieldsForOptionFull($form);
604
a7488080 605 if (!empty($form->_priceSet['is_quick_config'])) {
6a488035
TO
606 $form->_quickConfig = $form->_priceSet['is_quick_config'];
607 }
608 $form->add('hidden', 'priceSetId', $form->_priceSetId);
609
c7b3d063
DG
610 // CRM-14492 Admin price fields should show up on event registration if user has 'administer CiviCRM' permissions
611 $adminFieldVisible = false;
612 if (CRM_Core_Permission::check('administer CiviCRM')) {
613 $adminFieldVisible = true;
614 }
615
6a488035 616 foreach ($form->_feeBlock as $field) {
d06f3157 617 // public AND admin visibility fields are included for back-office registration and back-office change selections
6a488035 618 if (CRM_Utils_Array::value('visibility', $field) == 'public' ||
c7b3d063 619 (CRM_Utils_Array::value('visibility', $field) == 'admin' && $adminFieldVisible == true) ||
d06f3157
DG
620 $className == 'CRM_Event_Form_Participant' ||
621 $className == 'CRM_Event_Form_ParticipantFeeSelection'
6a488035
TO
622 ) {
623 $fieldId = $field['id'];
624 $elementName = 'price_' . $fieldId;
625
626 $isRequire = CRM_Utils_Array::value('is_required', $field);
627 if ($button == 'skip') {
628 $isRequire = FALSE;
629 }
630
631 //user might modified w/ hook.
632 $options = CRM_Utils_Array::value('options', $field);
633 if (!is_array($options)) {
634 continue;
635 }
636
637 $optionFullIds = CRM_Utils_Array::value('option_full_ids', $field, array());
638
639 //soft suppress required rule when option is full.
640 if (!empty($optionFullIds) && (count($options) == count($optionFullIds))) {
641 $isRequire = FALSE;
642 }
643
644 //build the element.
9da8dc8c 645 CRM_Price_BAO_PriceField::addQuickFormElement($form,
6a488035
TO
646 $elementName,
647 $fieldId,
648 FALSE,
649 $isRequire,
650 NULL,
651 $options,
652 $optionFullIds
653 );
654 }
655 }
656 $form->assign('priceSet', $form->_priceSet);
657 }
658 else {
659 $eventFeeBlockValues = array();
660 foreach ($form->_feeBlock as $fee) {
661 if (is_array($fee)) {
662
663 //CRM-7632, CRM-6201
664 $totalAmountJs = NULL;
665 if ($className == 'CRM_Event_Form_Participant') {
666 $totalAmountJs = array('onClick' => "fillTotalAmount(" . $fee['value'] . ")");
667 }
668
669 $eventFeeBlockValues['amount_id_' . $fee['amount_id']] = $fee['value'];
670 $elements[] = &$form->createElement('radio', NULL, '',
671 CRM_Utils_Money::format($fee['value']) . ' ' .
672 $fee['label'],
673 $fee['amount_id'],
674 $totalAmountJs
675 );
676 }
677 }
678 $form->assign('eventFeeBlockValues', json_encode($eventFeeBlockValues));
679
680 $form->_defaults['amount'] = CRM_Utils_Array::value('default_fee_id', $form->_values['event']);
681 $element = &$form->addGroup($elements, 'amount', ts('Event Fee(s)'), '<br />');
682 if (isset($form->_online) && $form->_online) {
683 $element->freeze();
684 }
685 if ($required) {
686 $form->addRule('amount', ts('Fee Level is a required field.'), 'required');
687 }
688 }
689 }
690
691 public static function formatFieldsForOptionFull(&$form) {
692 $priceSet = $form->get('priceSet');
693 $priceSetId = $form->get('priceSetId');
694 if (!$priceSetId ||
695 !is_array($priceSet) ||
8cc574cf 696 empty($priceSet) || empty($priceSet['optionsMaxValueTotal'])) {
6a488035
TO
697 return;
698 }
699
700 $skipParticipants = $formattedPriceSetDefaults = array();
701 if ($form->_allowConfirmation && (isset($form->_pId) || isset($form->_additionalParticipantId))) {
702 $participantId = isset($form->_pId) ? $form->_pId : $form->_additionalParticipantId;
703 $pricesetDefaults = CRM_Event_Form_EventFees::setDefaultPriceSet($participantId,
704 $form->_eventId
705 );
706 // modify options full to respect the selected fields
707 // options on confirmation.
708 $formattedPriceSetDefaults = self::formatPriceSetParams($form, $pricesetDefaultOptions);
709
710 // to skip current registered participants fields option count on confirmation.
711 $skipParticipants[] = $form->_participantId;
712 if (!empty($form->_additionalParticipantIds)) {
713 $skipParticipants = array_merge($skipParticipants, $form->_additionalParticipantIds);
714 }
715 }
716
717 $className = CRM_Utils_System::getClassName($form);
718
719 //get the current price event price set options count.
720 $currentOptionsCount = self::getPriceSetOptionCount($form);
721 $recordedOptionsCount = CRM_Event_BAO_Participant::priceSetOptionsCount($form->_eventId, $skipParticipants);
722
723 foreach ($form->_feeBlock as & $field) {
724 $optionFullIds = array();
725 $fieldId = $field['id'];
726 if (!is_array($field['options'])) {
727 continue;
728 }
729 foreach ($field['options'] as & $option) {
730 $optId = $option['id'];
731 $count = CRM_Utils_Array::value('count', $option, 0);
732 $maxValue = CRM_Utils_Array::value('max_value', $option, 0);
733 $dbTotalCount = CRM_Utils_Array::value($optId, $recordedOptionsCount, 0);
734 $currentTotalCount = CRM_Utils_Array::value($optId, $currentOptionsCount, 0);
735
736 // Do not consider current count for select field,
737 // since we are not going to freeze the options.
738 if ($field['html_type'] == 'Select') {
739 $totalCount = $dbTotalCount;
740 }
741 else {
742 $totalCount = $currentTotalCount + $dbTotalCount;
743 }
744
745 $isFull = FALSE;
746 if ($maxValue &&
747 (($totalCount >= $maxValue) || ($totalCount + $count > $maxValue))
748 ) {
749 $isFull = TRUE;
750 $optionFullIds[$optId] = $optId;
751 }
752
753 //here option is not full,
754 //but we don't want to allow participant to increase
755 //seats at the time of re-walking registration.
756 if ($count &&
757 $form->_allowConfirmation &&
758 !empty($formattedPriceSetDefaults)
759 ) {
8cc574cf 760 if (empty($formattedPriceSetDefaults["price_{$field}"]) || empty($formattedPriceSetDefaults["price_{$fieldId}"][$opId])) {
6a488035
TO
761 $optionFullIds[$optId] = $optId;
762 $isFull = TRUE;
763 }
764 }
765 $option['is_full'] = $isFull;
766 $option['db_total_count'] = $dbTotalCount;
767 $option['total_option_count'] = $dbTotalCount + $currentTotalCount;
768 }
769
770 //ignore option full for offline registration.
771 if ($className == 'CRM_Event_Form_Participant') {
772 $optionFullIds = array();
773 }
774
775 //finally get option ids in.
776 $field['option_full_ids'] = $optionFullIds;
777 }
778 }
779
780 /**
781 * global form rule
782 *
783 * @param array $fields the input form values
784 * @param array $files the uploaded files if any
785 * @param array $options additional user data
786 *
787 * @return true if no errors, else array of errors
788 * @access public
789 * @static
790 */
791 static function formRule($fields, $files, $self) {
792 $errors = array();
793 //check that either an email or firstname+lastname is included in the form(CRM-9587)
794 self::checkProfileComplete($fields, $errors, $self->_eventId);
795 //To check if the user is already registered for the event(CRM-2426)
796 if (!$self->_skipDupeRegistrationCheck) {
168e792f 797 self::checkRegistration($fields, $self);
6a488035
TO
798 }
799 //check for availability of registrations.
8cc574cf 800 if (!$self->_allowConfirmation && empty($fields['bypass_payment']) &&
6a488035
TO
801 is_numeric($self->_availableRegistrations) &&
802 CRM_Utils_Array::value('additional_participants', $fields) >= $self->_availableRegistrations
803 ) {
804 $errors['additional_participants'] = ts("There is only enough space left on this event for %1 participant(s).", array(1 => $self->_availableRegistrations));
805 }
806
807 // during confirmation don't allow to increase additional participants, CRM-4320
8cc574cf 808 if ($self->_allowConfirmation && !empty($fields['additional_participants']) &&
6a488035
TO
809 is_array($self->_additionalParticipantIds) &&
810 $fields['additional_participants'] > count($self->_additionalParticipantIds)
811 ) {
812 $errors['additional_participants'] = ts("Oops. It looks like you are trying to increase the number of additional people you are registering for. You can confirm registration for a maximum of %1 additional people.", array(1 => count($self->_additionalParticipantIds)));
813 }
814
815 //don't allow to register w/ waiting if enough spaces available.
a7488080 816 if (!empty($fields['bypass_payment'])) {
6a488035 817 if (!is_numeric($self->_availableRegistrations) ||
8cc574cf 818 (empty($fields['priceSetId']) && CRM_Utils_Array::value('additional_participants', $fields) < $self->_availableRegistrations)
6a488035
TO
819 ) {
820 $errors['bypass_payment'] = ts("Oops. There are enough available spaces in this event. You can not add yourself to the waiting list.");
821 }
822 }
823
a7488080 824 if (!empty($fields['additional_participants']) &&
6a488035
TO
825 !CRM_Utils_Rule::positiveInteger($fields['additional_participants'])
826 ) {
827 $errors['additional_participants'] = ts('Please enter a whole number for Number of additional people.');
828 }
829
830 // priceset validations
a7488080 831 if (!empty($fields['priceSetId'])) {
6a488035
TO
832 //format params.
833 $formatted = self::formatPriceSetParams($self, $fields);
834 $ppParams = array($formatted);
835 $priceSetErrors = self::validatePriceSet($self, $ppParams);
836 $primaryParticipantCount = self::getParticipantCount($self, $ppParams);
837
838 //get price set fields errors in.
839 $errors = array_merge($errors, CRM_Utils_Array::value(0, $priceSetErrors, array()));
840
841 $totalParticipants = $primaryParticipantCount;
a7488080 842 if (!empty($fields['additional_participants'])) {
6a488035
TO
843 $totalParticipants += $fields['additional_participants'];
844 }
845
a7488080 846 if (empty($fields['bypass_payment']) &&
6a488035
TO
847 !$self->_allowConfirmation &&
848 is_numeric($self->_availableRegistrations) &&
849 $self->_availableRegistrations < $totalParticipants
850 ) {
851 $errors['_qf_default'] = ts("Only %1 Registrations available.", array(1 => $self->_availableRegistrations));
852 }
853
854 $lineItem = array();
9da8dc8c 855 CRM_Price_BAO_PriceSet::processAmount($self->_values['fee'], $fields, $lineItem);
6a488035
TO
856 if ($fields['amount'] < 0) {
857 $errors['_qf_default'] = ts('Event Fee(s) can not be less than zero. Please select the options accordingly');
858 }
859 }
860
861 if ($self->_values['event']['is_monetary']) {
16d1c8e2 862 if (empty($self->_requireApproval) && !empty($fields['amount']) && $fields['amount'] > 0 && !isset($fields['payment_processor'])) {
0d588131 863 $errors['payment_processor'] = ts('Please select a Payment Method');
864 }
6a488035
TO
865 if (is_array($self->_paymentProcessor)) {
866 $payment = CRM_Core_Payment::singleton($self->_mode, $self->_paymentProcessor, $this);
867 $error = $payment->checkConfig($self->_mode);
868 if ($error) {
869 $errors['_qf_default'] = $error;
870 }
871 }
872 // return if this is express mode
f92fc7eb
CW
873 if ($self->_paymentProcessor &&
874 $self->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON
875 ) {
8cc574cf 876 if (!empty($fields[$self->_expressButtonName . '_x']) || !empty($fields[$self->_expressButtonName . '_y']) ||
6a488035
TO
877 CRM_Utils_Array::value($self->_expressButtonName, $fields)
878 ) {
879 return empty($errors) ? TRUE : $errors;
880 }
881 }
882
0d588131 883 $isZeroAmount = $skipPaymentValidation = FALSE;
a7488080 884 if (!empty($fields['priceSetId'])) {
6a488035
TO
885 if (CRM_Utils_Array::value('amount', $fields) == 0) {
886 $isZeroAmount = TRUE;
887 }
888 }
a7488080 889 elseif (!empty($fields['amount']) &&
6a488035
TO
890 (isset($self->_values['discount'][$fields['amount']])
891 && CRM_Utils_Array::value('value', $self->_values['discount'][$fields['amount']]) == 0
892 )
893 ) {
894 $isZeroAmount = TRUE;
895 }
a7488080 896 elseif (!empty($fields['amount']) &&
6a488035
TO
897 (isset($self->_values['fee'][$fields['amount']])
898 && CRM_Utils_Array::value('value', $self->_values['fee'][$fields['amount']]) == 0
899 )
900 ) {
901 $isZeroAmount = TRUE;
902 }
903
8cc574cf 904 if ($isZeroAmount && !($self->_forcePayement && !empty($fields['additional_participants']))) {
0d588131 905 $skipPaymentValidation = TRUE;
6a488035
TO
906 }
907
908 // also return if paylater mode or zero fees for valid members
8cc574cf 909 if (!empty($fields['is_pay_later']) || !empty($fields['bypass_payment']) ||
0d588131 910 $skipPaymentValidation ||
6a488035
TO
911 (!$self->_allowConfirmation && ($self->_requireApproval || $self->_allowWaitlist))
912 ) {
913 return empty($errors) ? TRUE : $errors;
914 }
7cb3d4f0
CW
915 if (!empty($self->_paymentFields)) {
916 CRM_Core_Form::validateMandatoryFields($self->_paymentFields, $fields, $errors);
6a488035 917 }
7cb3d4f0 918 CRM_Core_Payment_Form::validateCreditCard($fields, $errors);
6a488035 919 }
6a488035 920
6a488035
TO
921 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
922 if ($greetingType = CRM_Utils_Array::value($greeting, $fields)) {
923 $customizedValue = CRM_Core_OptionGroup::getValue($greeting, 'Customized', 'name');
924 if ($customizedValue == $greetingType && empty($fields[$greeting . '_custom'])) {
925 $errors[$customizedGreeting] = ts('Custom %1 is a required field if %1 is of type Customized.',
926 array(1 => ucwords(str_replace('_', ' ', $greeting)))
927 );
928 }
929 }
930 }
931 return empty($errors) ? TRUE : $errors;
932 }
933
934 /**
935 * Check if profiles are complete when event registration occurs(CRM-9587)
936 *
937 */
938 static function checkProfileComplete($fields, &$errors, $eventId) {
939 $email = '';
940 foreach ($fields as $fieldname => $fieldvalue) {
941 if (substr($fieldname, 0, 6) == 'email-' && $fieldvalue) {
942 $email = $fieldvalue;
943 }
944 }
945
8cc574cf 946 if (!$email && !(!empty($fields['first_name']) && !empty($fields['last_name']))) {
6a488035
TO
947 $defaults = $params = array('id' => $eventId);
948 CRM_Event_BAO_Event::retrieve($params, $defaults);
949 $message = ts("Mandatory fields (first name and last name, OR email address) are missing from this form.");
950 $errors['_qf_default'] = $message;
951 }
952 }
953
954 /**
955 * Function to process the form
956 *
957 * @access public
958 *
355ba699 959 * @return void
6a488035
TO
960 */
961 public function postProcess() {
962 // get the submitted form values.
963 $params = $this->controller->exportValues($this->_name);
964
965 //set as Primary participant
966 $params['is_primary'] = 1;
967
968 if ($this->_values['event']['is_pay_later'] && !array_key_exists('hidden_processor', $params)) {
969 $params['is_pay_later'] = 1;
970 }
971 else {
972 $params['is_pay_later'] = 0;
973 }
974
975 $this->set('is_pay_later', $params['is_pay_later']);
976
977 // assign pay later stuff
978 $this->_params['is_pay_later'] = CRM_Utils_Array::value('is_pay_later', $params, FALSE);
979 $this->assign('is_pay_later', $params['is_pay_later']);
980 if ($params['is_pay_later']) {
981 $this->assign('pay_later_text', $this->_values['event']['pay_later_text']);
982 $this->assign('pay_later_receipt', $this->_values['event']['pay_later_receipt']);
983 }
6a488035 984
168e792f
DL
985 if (!$this->_allowConfirmation) {
986 // check if the participant is already registered
987 if (!$this->_skipDupeRegistrationCheck) {
988 $params['contact_id'] = self::checkRegistration($params, $this, FALSE, TRUE, TRUE);
989 }
990 }
991
a7488080 992 if (!empty($params['image_URL'])) {
6a488035
TO
993 CRM_Contact_BAO_Contact::processImageParams($params);
994 }
995
996 //carry campaign to partcipants.
997 if (array_key_exists('participant_campaign_id', $params)) {
998 $params['campaign_id'] = $params['participant_campaign_id'];
999 }
1000 else {
1001 $params['campaign_id'] = CRM_Utils_Array::value('campaign_id', $this->_values['event']);
1002 }
1003
1004 //hack to allow group to register w/ waiting
1005 $primaryParticipantCount = self::getParticipantCount($this, $params);
1006
1007 $totalParticipants = $primaryParticipantCount;
a7488080 1008 if (!empty($params['additional_participants'])) {
6a488035
TO
1009 $totalParticipants += $params['additional_participants'];
1010 }
8cc574cf 1011 if (!$this->_allowConfirmation && !empty($params['bypass_payment']) &&
6a488035
TO
1012 is_numeric($this->_availableRegistrations) &&
1013 $totalParticipants > $this->_availableRegistrations
1014 ) {
1015 $this->_allowWaitlist = TRUE;
1016 $this->set('allowWaitlist', TRUE);
1017 }
1018
1019 //carry participant id if pre-registered.
1020 if ($this->_allowConfirmation && $this->_participantId) {
1021 $params['participant_id'] = $this->_participantId;
1022 }
1023
1024 $params['defaultRole'] = 1;
1025 if (array_key_exists('participant_role', $params)) {
1026 $params['participant_role_id'] = $params['participant_role'];
1027 }
1028
1029 if (array_key_exists('participant_role_id', $params)) {
1030 $params['defaultRole'] = 0;
1031 }
a7488080 1032 if (empty($params['participant_role_id']) &&
6a488035
TO
1033 $this->_values['event']['default_role_id']
1034 ) {
1035 $params['participant_role_id'] = $this->_values['event']['default_role_id'];
1036 }
1037
1038 $config = CRM_Core_Config::singleton();
1039 $params['currencyID'] = $config->defaultCurrency;
1040
1041 if ($this->_values['event']['is_monetary']) {
1042 // we first reset the confirm page so it accepts new values
1043 $this->controller->resetPage('Confirm');
1044
1045 //added for discount
1046 $discountId = CRM_Core_BAO_Discount::findSet($this->_eventId, 'civicrm_event');
1047
1048 if (!empty($this->_values['discount'][$discountId])) {
1049 $params['discount_id'] = $discountId;
1050 $params['amount_level'] = $this->_values['discount'][$discountId][$params['amount']]['label'];
1051
1052 $params['amount'] = $this->_values['discount'][$discountId][$params['amount']]['value'];
1053 }
1054 elseif (empty($params['priceSetId'])) {
16d1c8e2 1055 if (!empty($params['amount'])) {
1056 $params['amount_level'] = $this->_values['fee'][$params['amount']]['label'];
1057 $params['amount'] = $this->_values['fee'][$params['amount']]['value'];
1058 }
1059 else {
1060 $params['amount_level'] = $params['amount'] = '';
1061 }
6a488035
TO
1062 }
1063 else {
1064 $lineItem = array();
9da8dc8c 1065 CRM_Price_BAO_PriceSet::processAmount($this->_values['fee'], $params, $lineItem);
6a488035
TO
1066 $this->set('lineItem', array($lineItem));
1067 $this->set('lineItemParticipantsCount', array($primaryParticipantCount));
1068 }
1069
1070 $this->set('amount', $params['amount']);
1071 $this->set('amount_level', $params['amount_level']);
1072
1073 // generate and set an invoiceID for this transaction
1074 $invoiceID = md5(uniqid(rand(), TRUE));
1075 $this->set('invoiceID', $invoiceID);
1076
1077 if (is_array($this->_paymentProcessor)) {
1078 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this);
1079 }
1080 // default mode is direct
1081 $this->set('contributeMode', 'direct');
1082
1083 if (isset($params["state_province_id-{$this->_bltID}"]) &&
1084 $params["state_province_id-{$this->_bltID}"]
1085 ) {
1086 $params["state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($params["state_province_id-{$this->_bltID}"]);
1087 }
1088
1089 if (isset($params["country_id-{$this->_bltID}"]) &&
1090 $params["country_id-{$this->_bltID}"]
1091 ) {
1092 $params["country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($params["country_id-{$this->_bltID}"]);
1093 }
1094 if (isset($params['credit_card_exp_date'])) {
1095 $params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($params);
1096 $params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($params);
1097 }
1098 if ($this->_values['event']['is_monetary']) {
1099 $params['ip_address'] = CRM_Utils_System::ipAddress();
1100 $params['currencyID'] = $config->defaultCurrency;
1101 $params['payment_action'] = 'Sale';
1102 $params['invoiceID'] = $invoiceID;
1103 }
1104
1105 $this->_params = array();
1106 $this->_params[] = $params;
1107 $this->set('params', $this->_params);
1108
f92fc7eb
CW
1109 if ($this->_paymentProcessor &&
1110 $this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON
1111 ) {
6a488035
TO
1112 //get the button name
1113 $buttonName = $this->controller->getButtonName();
1114 if (in_array($buttonName,
1115 array(
1116 $this->_expressButtonName,
1117 $this->_expressButtonName . '_x',
1118 $this->_expressButtonName . '_y',
1119 )
8cc574cf 1120 ) && empty($params['is_pay_later']) &&
6a488035
TO
1121 !$this->_allowWaitlist &&
1122 !$this->_requireApproval
1123 ) {
1124 $this->set('contributeMode', 'express');
1125
1126 // Send Event Name & Id in Params
1127 $params['eventName'] = $this->_values['event']['title'];
1128 $params['eventId'] = $this->_values['event']['id'];
1129
1130 $params['cancelURL'] = CRM_Utils_System::url('civicrm/event/register',
1131 "_qf_Register_display=1&qfKey={$this->controller->_key}",
1132 TRUE, NULL, FALSE
1133 );
1134 if (CRM_Utils_Array::value('additional_participants', $params, FALSE)) {
1135 $urlArgs = "_qf_Participant_1_display=1&rfp=1&qfKey={$this->controller->_key}";
1136 }
1137 else {
1138 $urlArgs = "_qf_Confirm_display=1&rfp=1&qfKey={$this->controller->_key}";
1139 }
1140 $params['returnURL'] = CRM_Utils_System::url('civicrm/event/register',
1141 $urlArgs,
1142 TRUE, NULL, FALSE
1143 );
1144 $params['invoiceID'] = $invoiceID;
1145
1146 //default action is Sale
1147 $params['payment_action'] = 'Sale';
1148
1149 $token = $payment->setExpressCheckout($params);
1150 if (is_a($token, 'CRM_Core_Error')) {
1151 CRM_Core_Error::displaySessionError($token);
1152 CRM_Utils_System::redirect($params['cancelURL']);
1153 }
1154
1155 $this->set('token', $token);
1156
1157 $paymentURL = $this->_paymentProcessor['url_site'] . "/cgi-bin/webscr?cmd=_express-checkout&token=$token";
1158
1159 CRM_Utils_System::redirect($paymentURL);
1160 }
1161 }
f92fc7eb
CW
1162 elseif ($this->_paymentProcessor &&
1163 $this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_NOTIFY
1164 ) {
6a488035
TO
1165 $this->set('contributeMode', 'notify');
1166 }
1167 }
1168 else {
1169 $session = CRM_Core_Session::singleton();
1170 $params['description'] = ts('Online Event Registration') . ' ' . $this->_values['event']['title'];
1171
1172 $this->_params = array();
1173 $this->_params[] = $params;
1174 $this->set('params', $this->_params);
1175
1909126f 1176 if (
1177 empty($params['additional_participants'])
1178 && !$this->_values['event']['is_confirm_enabled'] // CRM-11182 - Optional confirmation screen
1179 ) {
6a488035
TO
1180 self::processRegistration($this->_params);
1181 }
1182 }
1183
1184 // If registering > 1 participant, give status message
1185 if (CRM_Utils_Array::value('additional_participants', $params, FALSE)) {
1186 $statusMsg = ts('Registration information for participant 1 has been saved.');
1187 CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
1188 }
1189 }
1190 //end of function
1191
1192 /*
168e792f 1193 * Function to process Registration of free event
6a488035 1194 *
168e792f
DL
1195 * @param array $param Form valuess
1196 * @param int contactID
6a488035 1197 *
355ba699 1198 * @return void
168e792f 1199 * access public
6a488035
TO
1200 *
1201 */
1202 public function processRegistration($params, $contactID = NULL) {
1203 $session = CRM_Core_Session::singleton();
1204 $this->_participantInfo = array();
1205
1206 // CRM-4320, lets build array of cancelled additional participant ids
1207 // those are drop or skip by primary at the time of confirmation.
1208 // get all in and then unset those are confirmed.
1209 $cancelledIds = $this->_additionalParticipantIds;
1210
1211 $participantCount = array();
1212 foreach ($params as $participantNum => $record) {
1213 if ($record == 'skip') {
1214 $participantCount[$participantNum] = 'skip';
1215 }
1216 elseif ($participantNum) {
1217 $participantCount[$participantNum] = 'participant';
1218 }
1219 }
1220
1221 $registerByID = NULL;
1222 foreach ($params as $key => $value) {
1223 if ($value != 'skip') {
1224 $fields = NULL;
1225
1226 // setting register by Id and unset contactId.
a7488080 1227 if (empty($value['is_primary'])) {
6a488035
TO
1228 $contactID = NULL;
1229 $registerByID = $this->get('registerByID');
1230 if ($registerByID) {
1231 $value['registered_by_id'] = $registerByID;
1232 }
1233 // get an email if one exists for the participant
1234 $participantEmail = '';
1235 foreach (array_keys($value) as $valueName) {
1236 if (substr($valueName, 0, 6) == 'email-') {
1237 $participantEmail = $value[$valueName];
1238 }
1239 }
1240 if ($participantEmail) {
1241 $this->_participantInfo[] = $participantEmail;
1242 }
1243 else {
1244 $this->_participantInfo[] = $value['first_name'] . ' ' . $value['last_name'];
1245 }
1246 }
a7488080 1247 elseif (!empty($value['contact_id'])) {
6a488035
TO
1248 $contactID = $value['contact_id'];
1249 }
1250 else {
5c280496 1251 $contactID = $this->getContactID();
6a488035
TO
1252 }
1253
a9f7d48b 1254 CRM_Event_Form_Registration_Confirm::fixLocationFields($value, $fields, $this);
6a488035 1255 //for free event or additional participant, dont create billing email address.
a7488080 1256 if (empty($value['is_primary']) || !$this->_values['event']['is_monetary']) {
6a488035
TO
1257 unset($value["email-{$this->_bltID}"]);
1258 }
1259
a9f7d48b 1260 $contactID = CRM_Event_Form_Registration_Confirm::updateContactFields($contactID, $value, $fields, $this);
6a488035
TO
1261
1262 // lets store the contactID in the session
1263 // we dont store in userID in case the user is doing multiple
1264 // transactions etc
1265 // for things like tell a friend
8cc574cf 1266 if (!$this->getContactID() && !empty($value['is_primary'])) {
6a488035
TO
1267 $session->set('transaction.userID', $contactID);
1268 }
1269
1270 //lets get the status if require approval or waiting.
1271
1272 $waitingStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Waiting'");
1273 if ($this->_allowWaitlist && !$this->_allowConfirmation) {
1274 $value['participant_status_id'] = $value['participant_status'] = array_search('On waitlist', $waitingStatuses);
1275 }
1276 elseif ($this->_requireApproval && !$this->_allowConfirmation) {
1277 $value['participant_status_id'] = $value['participant_status'] = array_search('Awaiting approval', $waitingStatuses);
1278 }
1279
1280 $this->set('value', $value);
1281 $this->confirmPostProcess($contactID, NULL, NULL);
1282
1283 //lets get additional participant id to cancel.
1284 if ($this->_allowConfirmation && is_array($cancelledIds)) {
1285 $additonalId = CRM_Utils_Array::value('participant_id', $value);
1286 if ($additonalId && $key = array_search($additonalId, $cancelledIds)) {
1287 unset($cancelledIds[$key]);
1288 }
1289 }
1290 }
1291 }
1292
1293 // update status and send mail to cancelled additonal participants, CRM-4320
1294 if ($this->_allowConfirmation && is_array($cancelledIds) && !empty($cancelledIds)) {
1295 $cancelledId = array_search('Cancelled',
1296 CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Negative'")
1297 );
1298 CRM_Event_BAO_Participant::transitionParticipants($cancelledIds, $cancelledId);
1299 }
1300
1301 //set information about additional participants if exists
1302 if (count($this->_participantInfo)) {
1303 $this->set('participantInfo', $this->_participantInfo);
1304 }
1305
1306 //send mail Confirmation/Receipt
1307 if ($this->_contributeMode != 'checkout' ||
1308 $this->_contributeMode != 'notify'
1309 ) {
1310 $isTest = FALSE;
1311 if ($this->_action & CRM_Core_Action::PREVIEW) {
1312 $isTest = TRUE;
1313 }
1314
1315 //handle if no additional participant.
1316 if (!$registerByID) {
1317 $registerByID = $this->get('registerByID');
1318 }
1319 $primaryContactId = $this->get('primaryContactId');
1320
1321 //build an array of custom profile and assigning it to template.
1322 $additionalIDs = CRM_Event_BAO_Event::buildCustomProfile($registerByID, NULL,
1323 $primaryContactId, $isTest, TRUE
1324 );
1325
1326 //lets carry all paticipant params w/ values.
1327 foreach ($additionalIDs as $participantID => $contactId) {
1328 $participantNum = NULL;
1329 if ($participantID == $registerByID) {
1330 $participantNum = 0;
1331 }
1332 else {
1333 if ($participantNum = array_search('participant', $participantCount)) {
1334 unset($participantCount[$participantNum]);
1335 }
1336 }
1337
1338 if ($participantNum === NULL) {
1339 break;
1340 }
1341
1342 //carry the participant submitted values.
1343 $this->_values['params'][$participantID] = $params[$participantNum];
1344 }
1345
1346 //lets send mails to all with meanigful text, CRM-4320.
1347 $this->assign('isOnWaitlist', $this->_allowWaitlist);
1348 $this->assign('isRequireApproval', $this->_requireApproval);
1349
1350 foreach ($additionalIDs as $participantID => $contactId) {
1351 if ($participantID == $registerByID) {
1352 //set as Primary Participant
1353 $this->assign('isPrimary', 1);
1354
1355 $customProfile = CRM_Event_BAO_Event::buildCustomProfile($participantID, $this->_values, NULL, $isTest);
1356
1357 if (count($customProfile)) {
1358 $this->assign('customProfile', $customProfile);
1359 $this->set('customProfile', $customProfile);
1360 }
1361 }
1362 else {
1363 $this->assign('isPrimary', 0);
1364 $this->assign('customProfile', NULL);
1365 }
1366
1367 //send Confirmation mail to Primary & additional Participants if exists
1368 CRM_Event_BAO_Event::sendMail($contactId, $this->_values, $participantID, $isTest);
1369 }
1370 }
1371 }
1372
1373 /**
1374 * Method to check if the user is already registered for the event
1375 * and if result found redirect to the event info page
1376 *
1377 * @param array $fields the input form values(anonymous user)
1378 * @param array $self event data
168e792f
DL
1379 * @param boolean $isAdditional treat isAdditional participants a bit differently
1380 * @param boolean $returnContactId just find and return the contactID match to use
1381 * @param boolean $useDedupeRules force usage of dedupe rules
6a488035
TO
1382 *
1383 * @return void
1384 * @access public
1385 */
178073d6 1386 static function checkRegistration($fields, &$self, $isAdditional = FALSE, $returnContactId = FALSE, $useDedupeRules = FALSE) {
6a488035
TO
1387 // CRM-3907, skip check for preview registrations
1388 // CRM-4320 participant need to walk wizard
1389 if (!$returnContactId &&
1390 ($self->_mode == 'test' || $self->_allowConfirmation)
1391 ) {
1392 return FALSE;
1393 }
1394
1395 $contactID = NULL;
1396 $session = CRM_Core_Session::singleton();
1397 if (!$isAdditional) {
5c280496 1398 $contactID = $self->getContactID();
6a488035
TO
1399 }
1400
178073d6 1401 if (!$contactID && is_array($fields) && $fields) {
6a488035
TO
1402
1403 //CRM-6996
1404 //as we are allowing w/ same email address,
1405 //lets check w/ other contact params.
1406 if ($self->_values['event']['allow_same_participant_emails']) {
1407 $params = $fields;
1408 $level = ($isAdditional) ? 'Supervised' : 'Unsupervised';
1409
1410 $dedupeParams = CRM_Dedupe_Finder::formatParams($params, 'Individual');
1411
1412 // disable permission based on cache since event registration is public page/feature.
1413 $dedupeParams['check_permission'] = FALSE;
1414 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams, 'Individual', $level);
1415 $contactID = CRM_Utils_Array::value(0, $ids);
1416 }
1417 else {
1418 foreach ($fields as $fieldname => $fieldvalue) {
1419 if (substr($fieldname, 0, 6) == 'email-') {
1420 $emailString = trim($fieldvalue);
1421 if (!empty($emailString)) {
1422 $match = CRM_Contact_BAO_Contact::matchContactOnEmail($emailString, 'Individual');
1423 if (!empty($match)) {
1424 $contactID = $match->contact_id;
1425 }
1426 }
1427 }
1428 }
1429 }
1430 }
1431
1432 if ($returnContactId) {
1433 // CRM-7377
1434 // return contactID if contact already exists
1435 return $contactID;
1436 }
1437
1438 if ($contactID) {
1439 $participant = new CRM_Event_BAO_Participant();
1440 $participant->contact_id = $contactID;
1441 $participant->event_id = $self->_values['event']['id'];
1442 if (!empty($fields['participant_role']) && is_numeric($fields['participant_role'])) {
1443 $participant->role_id = $fields['participant_role'];
1444 }
1445 else {
1446 $participant->role_id = $self->_values['event']['default_role_id'];
1447 }
1448 $participant->is_test = 0;
1449 $participant->find();
1450 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
1451 while ($participant->fetch()) {
1452 if (array_key_exists($participant->status_id, $statusTypes)) {
1453 if (!$isAdditional && !$self->_values['event']['allow_same_participant_emails']) {
1454 $registerUrl = CRM_Utils_System::url('civicrm/event/register',
1455 "reset=1&id={$self->_values['event']['id']}&cid=0"
1456 );
1457 if ($self->_pcpId) {
1458 $registerUrl .= '&pcpId=' . $self->_pcpId;
1459 }
1460
1461 $status = ts("It looks like you are already registered for this event. If you want to change your registration, or you feel that you've gotten this message in error, please contact the site administrator.") . ' ' . ts('You can also <a href="%1">register another participant</a>.', array(1 => $registerUrl));
1462 $session->setStatus($status, ts('Oops.'), 'alert');
1463 $url = CRM_Utils_System::url('civicrm/event/info',
1464 "reset=1&id={$self->_values['event']['id']}&noFullMsg=true"
1465 );
1466 if ($self->_action & CRM_Core_Action::PREVIEW) {
1467 $url .= '&action=preview';
1468 }
1469
1470 if ($self->_pcpId) {
1471 $url .= '&pcpId=' . $self->_pcpId;
1472 }
1473
1474 CRM_Utils_System::redirect($url);
1475 }
1476
1477 if ($isAdditional) {
1478 $status = ts("It looks like this participant is already registered for this event. If you want to change your registration, or you feel that you've gotten this message in error, please contact the site administrator.");
1479 $session->setStatus($status, ts('Oops.'), 'alert');
1480 return $participant->id;
1481 }
1482 }
1483 }
1484 }
1485 }
1486}