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