Removed unused parameter from function signature
[civicrm-core.git] / CRM / Event / Form / Participant.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2015
33 * $Id$
34 *
35 */
36
37 /**
38 * This class generates form components for processing a participation
39 * in an event
40 */
41 class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment {
42
43 public $useLivePageJS = TRUE;
44
45 /**
46 * The values for the contribution db object.
47 *
48 * @var array
49 */
50 public $_values;
51
52 /**
53 * The values for the quickconfig for priceset.
54 *
55 * @var boolean
56 */
57 public $_quickConfig = NULL;
58
59 /**
60 * Price Set ID, if the new price set method is used
61 *
62 * @var int
63 */
64 public $_priceSetId;
65
66 /**
67 * Array of fields for the price set.
68 *
69 * @var array
70 */
71 public $_priceSet;
72
73 /**
74 * The id of the participation that we are proceessing.
75 *
76 * @var int
77 */
78 public $_id;
79
80 /**
81 * The id of the note.
82 *
83 * @var int
84 */
85 protected $_noteId = NULL;
86
87 /**
88 * The id of the contact associated with this participation.
89 *
90 * @var int
91 */
92 public $_contactId;
93
94 /**
95 * Array of event values.
96 *
97 * @var array
98 */
99 protected $_event;
100
101 /**
102 * Are we operating in "single mode", i.e. adding / editing only
103 * one participant record, or is this a batch add operation
104 *
105 * @var boolean
106 */
107 public $_single = FALSE;
108
109 /**
110 * If event is paid or unpaid.
111 */
112 public $_isPaidEvent;
113
114 /**
115 * Page action.
116 */
117 public $_action;
118
119 /**
120 * Role Id.
121 */
122 protected $_roleId = NULL;
123
124 /**
125 * Event Type Id.
126 */
127 protected $_eventTypeId = NULL;
128
129 /**
130 * Participant status Id.
131 */
132 protected $_statusId = NULL;
133
134 /**
135 * Cache all the participant statuses.
136 */
137 protected $_participantStatuses;
138
139 /**
140 * Participant mode.
141 */
142 public $_mode = NULL;
143
144 /**
145 * Event ID preselect.
146 */
147 public $_eID = NULL;
148
149 /**
150 * Line Item for Price Set.
151 */
152 public $_lineItem = NULL;
153
154 /**
155 * Contribution mode for event registration for offline mode.
156 */
157 public $_contributeMode = 'direct';
158
159 public $_online;
160
161 /**
162 * Store id of role custom data type ( option value )
163 */
164 protected $_roleCustomDataTypeID;
165
166 /**
167 * Store id of event Name custom data type ( option value)
168 */
169 protected $_eventNameCustomDataTypeID;
170
171 /**
172 * Selected discount id.
173 */
174 public $_originalDiscountId = NULL;
175
176 /**
177 * Event id.
178 */
179 public $_eventId = NULL;
180
181 /**
182 * Id of payment, if any
183 */
184 public $_paymentId = NULL;
185
186 /**
187 * @todo add explanatory note about this
188 * @var null
189 */
190 public $_onlinePendingContributionId = NULL;
191
192 /**
193 * Explicitly declare the entity api name.
194 */
195 public function getDefaultEntity() {
196 return 'Participant';
197 }
198
199 /**
200 * Set variables up before form is built.
201 *
202 * @return void
203 */
204 public function preProcess() {
205 $this->_showFeeBlock = CRM_Utils_Array::value('eventId', $_GET);
206 $this->assign('showFeeBlock', FALSE);
207 $this->assign('feeBlockPaid', FALSE);
208
209 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
210 $this->_mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
211 $this->_eID = CRM_Utils_Request::retrieve('eid', 'Positive', $this);
212 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
213 $this->assign('context', $this->_context);
214
215 if ($this->_contactId) {
216 $displayName = CRM_Contact_BAO_Contact::displayName($this->_contactId);
217 $this->assign('displayName', $displayName);
218 $this->setPageTitle(ts('Event Registration for %1', array(1 => $displayName)));
219 }
220 else {
221 $this->setPageTitle(ts('Event Registration'));
222 }
223
224 // check the current path, if search based, then dont get participantID
225 // CRM-5792
226 $path = CRM_Utils_System::currentPath();
227 if (
228 strpos($path, 'civicrm/contact/search') === 0 ||
229 strpos($path, 'civicrm/group/search') === 0
230 ) {
231 $this->_id = NULL;
232 }
233 else {
234 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
235 }
236
237 if ($this->_id) {
238 $this->assign('participantId', $this->_id);
239
240 $this->_paymentId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
241 $this->_id, 'id', 'participant_id'
242 );
243
244 $this->assign('hasPayment', $this->_paymentId);
245
246 // CRM-12615 - Get payment information from the primary registration
247 if ((!$this->_paymentId) && ($this->_action == CRM_Core_Action::UPDATE)) {
248 $registered_by_id = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
249 $this->_id, 'registered_by_id', 'id'
250 );
251 if ($registered_by_id) {
252 $this->_paymentId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
253 $registered_by_id, 'id', 'participant_id'
254 );
255 $this->assign('registeredByParticipantId', $registered_by_id);
256 }
257 }
258 }
259
260 // get the option value for custom data type
261 $this->_roleCustomDataTypeID = CRM_Core_OptionGroup::getValue('custom_data_type', 'ParticipantRole', 'name');
262 $this->_eventNameCustomDataTypeID = CRM_Core_OptionGroup::getValue('custom_data_type', 'ParticipantEventName', 'name');
263 $this->_eventTypeCustomDataTypeID = CRM_Core_OptionGroup::getValue('custom_data_type', 'ParticipantEventType', 'name');
264 $this->assign('roleCustomDataTypeID', $this->_roleCustomDataTypeID);
265 $this->assign('eventNameCustomDataTypeID', $this->_eventNameCustomDataTypeID);
266 $this->assign('eventTypeCustomDataTypeID', $this->_eventTypeCustomDataTypeID);
267
268 if ($this->_mode) {
269 $this->assign('participantMode', $this->_mode);
270 $this->assignPaymentRelatedVariables();
271 }
272
273 if ($this->_showFeeBlock) {
274 $this->assign('showFeeBlock', TRUE);
275 $isMonetary = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_showFeeBlock, 'is_monetary');
276 if ($isMonetary) {
277 $this->assign('feeBlockPaid', TRUE);
278 }
279 return CRM_Event_Form_EventFees::preProcess($this);
280 }
281
282 //custom data related code
283 $this->_cdType = CRM_Utils_Array::value('type', $_GET);
284 $this->assign('cdType', FALSE);
285 if ($this->_cdType) {
286 $this->assign('cdType', TRUE);
287 return CRM_Custom_Form_CustomData::preProcess($this, NULL, NULL, NULL, NULL, NULL, TRUE);
288 }
289
290 //check the mode when this form is called either single or as
291 //search task action
292 if ($this->_id || $this->_contactId || $this->_context == 'standalone') {
293 $this->_single = TRUE;
294 $this->assign('urlPath', 'civicrm/contact/view/participant');
295 if (!$this->_id && !$this->_contactId) {
296 $breadCrumbs = array(
297 array(
298 'title' => ts('CiviEvent Dashboard'),
299 'url' => CRM_Utils_System::url('civicrm/event', 'reset=1'),
300 ),
301 );
302
303 CRM_Utils_System::appendBreadCrumb($breadCrumbs);
304 }
305 }
306 else {
307 //set the appropriate action
308 $context = $this->get('context');
309 $urlString = 'civicrm/contact/search';
310 $this->_action = CRM_Core_Action::BASIC;
311 switch ($context) {
312 case 'advanced':
313 $urlString = 'civicrm/contact/search/advanced';
314 $this->_action = CRM_Core_Action::ADVANCED;
315 break;
316
317 case 'builder':
318 $urlString = 'civicrm/contact/search/builder';
319 $this->_action = CRM_Core_Action::PROFILE;
320 break;
321
322 case 'basic':
323 $urlString = 'civicrm/contact/search/basic';
324 $this->_action = CRM_Core_Action::BASIC;
325 break;
326
327 case 'custom':
328 $urlString = 'civicrm/contact/search/custom';
329 $this->_action = CRM_Core_Action::COPY;
330 break;
331 }
332 parent::preProcess();
333
334 $this->_single = FALSE;
335 $this->_contactId = NULL;
336
337 //set ajax path, this used for custom data building
338 $this->assign('urlPath', $urlString);
339 $this->assign('urlPathVar', "_qf_Participant_display=true&qfKey={$this->controller->_key}");
340 }
341
342 $this->assign('single', $this->_single);
343
344 if (!$this->_id) {
345 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'add');
346 }
347 $this->assign('action', $this->_action);
348
349 // check for edit permission
350 if (!CRM_Core_Permission::checkActionPermission('CiviEvent', $this->_action)) {
351 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
352 }
353
354 if ($this->_action & CRM_Core_Action::DELETE) {
355 // check delete permission for contribution
356 if ($this->_id && $this->_paymentId && !CRM_Core_Permission::checkActionPermission('CiviContribute', $this->_action)) {
357 CRM_Core_Error::fatal(ts("This Participant is linked to a contribution. You must have 'delete in CiviContribute' permission in order to delete this record."));
358 }
359 return;
360 }
361
362 if ($this->_id) {
363 // assign participant id to the template
364 $this->assign('participantId', $this->_id);
365 $this->_roleId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'role_id');
366 }
367
368 // when fee amount is included in form
369 if (!empty($_POST['hidden_feeblock']) || !empty($_POST['send_receipt'])) {
370 CRM_Event_Form_EventFees::preProcess($this);
371 CRM_Event_Form_EventFees::buildQuickForm($this);
372 CRM_Event_Form_EventFees::setDefaultValues($this);
373 }
374
375 // when custom data is included in this page
376 if (!empty($_POST['hidden_custom'])) {
377 // Custom data of type participant role
378 // Note: Some earlier commits imply $_POST['role_id'] could be a comma separated string,
379 // not sure if that ever really happens
380 if (!empty($_POST['role_id'])) {
381 foreach ($_POST['role_id'] as $roleID) {
382 CRM_Custom_Form_CustomData::preProcess($this, $this->_roleCustomDataTypeID, $roleID, 1, 'Participant', $this->_id);
383 CRM_Custom_Form_CustomData::buildQuickForm($this);
384 CRM_Custom_Form_CustomData::setDefaultValues($this);
385 }
386 }
387
388 //custom data of type participant event
389 CRM_Custom_Form_CustomData::preProcess($this, $this->_eventNameCustomDataTypeID, $_POST['event_id'], 1, 'Participant', $this->_id);
390 CRM_Custom_Form_CustomData::buildQuickForm($this);
391 CRM_Custom_Form_CustomData::setDefaultValues($this);
392
393 // custom data of type participant event type
394 $eventTypeId = NULL;
395 if ($eventId = CRM_Utils_Array::value('event_id', $_POST)) {
396 $eventTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $eventId, 'event_type_id', 'id');
397 }
398 CRM_Custom_Form_CustomData::preProcess($this, $this->_eventTypeCustomDataTypeID, $eventTypeId,
399 1, 'Participant', $this->_id
400 );
401 CRM_Custom_Form_CustomData::buildQuickForm($this);
402 CRM_Custom_Form_CustomData::setDefaultValues($this);
403
404 //custom data of type participant, ( we 'null' to reset subType and subName)
405 CRM_Custom_Form_CustomData::preProcess($this, 'null', 'null', 1, 'Participant', $this->_id);
406 CRM_Custom_Form_CustomData::buildQuickForm($this);
407 CRM_Custom_Form_CustomData::setDefaultValues($this);
408 }
409
410 // CRM-4395, get the online pending contribution id.
411 $this->_onlinePendingContributionId = NULL;
412 if (!$this->_mode && $this->_id && ($this->_action & CRM_Core_Action::UPDATE)) {
413 $this->_onlinePendingContributionId = CRM_Contribute_BAO_Contribution::checkOnlinePendingContribution($this->_id,
414 'Event'
415 );
416 }
417 $this->set('onlinePendingContributionId', $this->_onlinePendingContributionId);
418 }
419
420 /**
421 * This function sets the default values for the form in edit/view mode
422 * the default values are retrieved from the database
423 *
424 *
425 * @return void
426 */
427 public function setDefaultValues() {
428 if ($this->_showFeeBlock) {
429 return CRM_Event_Form_EventFees::setDefaultValues($this);
430 }
431
432 if ($this->_cdType) {
433 return CRM_Custom_Form_CustomData::setDefaultValues($this);
434 }
435
436 $defaults = array();
437
438 if ($this->_action & CRM_Core_Action::DELETE) {
439 return $defaults;
440 }
441
442 if ($this->_id) {
443 $ids = array();
444 $params = array('id' => $this->_id);
445
446 CRM_Event_BAO_Participant::getValues($params, $defaults, $ids);
447 $sep = CRM_Core_DAO::VALUE_SEPARATOR;
448 if ($defaults[$this->_id]['role_id']) {
449 $roleIDs = explode($sep, $defaults[$this->_id]['role_id']);
450 }
451 $this->_contactId = $defaults[$this->_id]['contact_id'];
452 $this->_statusId = $defaults[$this->_id]['participant_status_id'];
453
454 //set defaults for note
455 $noteDetails = CRM_Core_BAO_Note::getNote($this->_id, 'civicrm_participant');
456 $defaults[$this->_id]['note'] = array_pop($noteDetails);
457
458 // Check if this is a primaryParticipant (registered for others) and retrieve additional participants if true (CRM-4859)
459 if (CRM_Event_BAO_Participant::isPrimaryParticipant($this->_id)) {
460 $this->assign('additionalParticipants', CRM_Event_BAO_Participant::getAdditionalParticipants($this->_id));
461 }
462
463 // Get registered_by contact ID and display_name if participant was registered by someone else (CRM-4859)
464 if (!empty($defaults[$this->_id]['participant_registered_by_id'])) {
465 $registered_by_contact_id = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
466 $defaults[$this->_id]['participant_registered_by_id'],
467 'contact_id', 'id'
468 );
469 $this->assign('participant_registered_by_id', $defaults[$this->_id]['participant_registered_by_id']);
470 $this->assign('registered_by_contact_id', $registered_by_contact_id);
471 $this->assign('registered_by_display_name', CRM_Contact_BAO_Contact::displayName($registered_by_contact_id));
472 }
473 }
474
475 if ($this->_action & (CRM_Core_Action::VIEW | CRM_Core_Action::BROWSE)) {
476 $inactiveNeeded = TRUE;
477 $viewMode = TRUE;
478 }
479 else {
480 $viewMode = FALSE;
481 $inactiveNeeded = FALSE;
482 }
483
484 //setting default register date
485 if ($this->_action == CRM_Core_Action::ADD) {
486 $statuses = array_flip($this->_participantStatuses);
487 $defaults[$this->_id]['status_id'] = CRM_Utils_Array::value(ts('Registered'), $statuses);
488 if (!empty($defaults[$this->_id]['event_id'])) {
489 $contributionTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event',
490 $defaults[$this->_id]['event_id'],
491 'financial_type_id'
492 );
493 if ($contributionTypeId) {
494 $defaults[$this->_id]['financial_type_id'] = $contributionTypeId;
495 }
496 }
497
498 if ($this->_mode) {
499 $fields["email-{$this->_bltID}"] = 1;
500 $fields['email-Primary'] = 1;
501
502 if ($this->_contactId) {
503 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_contactId, $fields, $defaults);
504 }
505
506 if (empty($defaults["email-{$this->_bltID}"]) &&
507 !empty($defaults['email-Primary'])
508 ) {
509 $defaults[$this->_id]["email-{$this->_bltID}"] = $defaults['email-Primary'];
510 }
511 }
512
513 $submittedRole = $this->getElementValue('role_id');
514 if (!empty($submittedRole[0])) {
515 $roleID = $submittedRole[0];
516 }
517 $submittedEvent = $this->getElementValue('event_id');
518 if (!empty($submittedEvent[0])) {
519 $eventID = $submittedEvent[0];
520 }
521 }
522 else {
523 $defaults[$this->_id]['record_contribution'] = 0;
524
525 if ($defaults[$this->_id]['participant_is_pay_later']) {
526 $this->assign('participant_is_pay_later', TRUE);
527 }
528
529 $this->assign('participant_status_id', $defaults[$this->_id]['participant_status_id']);
530 $eventID = $defaults[$this->_id]['event_id'];
531
532 $this->_eventTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $eventID, 'event_type_id', 'id');
533
534 $this->_discountId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'discount_id');
535 if ($this->_discountId) {
536 $this->set('discountId', $this->_discountId);
537 }
538 }
539
540 list($defaults[$this->_id]['register_date'], $defaults[$this->_id]['register_date_time'])
541 = CRM_Utils_Date::setDateDefaults(CRM_Utils_Array::value('register_date', $defaults[$this->_id]), 'activityDateTime');
542
543 //assign event and role id, this is needed for Custom data building
544 $sep = CRM_Core_DAO::VALUE_SEPARATOR;
545 if (!empty($defaults[$this->_id]['participant_role_id'])) {
546 $roleIDs = explode($sep, $defaults[$this->_id]['participant_role_id']);
547 }
548 if (isset($_POST['event_id'])) {
549 $eventID = $_POST['event_id'];
550 }
551
552 if ($this->_eID) {
553 $eventID = $this->_eID;
554 //@todo - rationalise the $this->_eID with $POST['event_id'], $this->_eid is set when eid=x is in the url
555 $roleID = CRM_Core_DAO::getFieldValue(
556 'CRM_Event_DAO_Event',
557 $this->_eID,
558 'default_role_id'
559 );
560 if (empty($roleIDs)) {
561 $roleIDs = (array) $defaults[$this->_id]['participant_role_id'] = $roleID;
562 }
563 $defaults[$this->_id]['event_id'] = $eventID;
564 }
565 if (!empty($eventID)) {
566 $this->_eventTypeId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $eventID, 'event_type_id', 'id');
567 }
568 //these should take precedence so we state them last
569 $urlRoleIDS = CRM_Utils_Request::retrieve('roles', 'String');
570 if ($urlRoleIDS) {
571 $roleIDs = explode(',', $urlRoleIDS);
572 }
573 if (isset($roleIDs)) {
574 $defaults[$this->_id]['role_id'] = implode(',', $roleIDs);
575 }
576
577 if (isset($eventID)) {
578 $this->assign('eventID', $eventID);
579 $this->set('eventId', $eventID);
580 }
581
582 if (isset($this->_eventTypeId)) {
583 $this->assign('eventTypeID', $this->_eventTypeId);
584 }
585
586 $this->assign('event_is_test', CRM_Utils_Array::value('event_is_test', $defaults[$this->_id]));
587 return $defaults[$this->_id];
588 }
589
590 /**
591 * Build the form object.
592 *
593 * @return void
594 */
595 public function buildQuickForm() {
596 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
597 $partiallyPaidStatusId = array_search('Partially paid', $participantStatuses);
598 $this->assign('partiallyPaidStatusId', $partiallyPaidStatusId);
599
600 if ($this->_showFeeBlock) {
601 return CRM_Event_Form_EventFees::buildQuickForm($this);
602 }
603
604 if ($this->_cdType) {
605 return CRM_Custom_Form_CustomData::buildQuickForm($this);
606 }
607
608 //need to assign custom data type to the template
609 $this->assign('customDataType', 'Participant');
610
611 $this->applyFilter('__ALL__', 'trim');
612
613 if ($this->_action & CRM_Core_Action::DELETE) {
614 if ($this->_single) {
615 $additionalParticipant = count(CRM_Event_BAO_Event::buildCustomProfile($this->_id,
616 NULL,
617 $this->_contactId,
618 FALSE,
619 TRUE
620 )) - 1;
621 if ($additionalParticipant) {
622 $deleteParticipants = array(
623 1 => ts('Delete this participant record along with associated participant record(s).'),
624 2 => ts('Delete only this participant record.'),
625 );
626 $this->addRadio('delete_participant', NULL, $deleteParticipants, NULL, '<br />');
627 $this->setDefaults(array('delete_participant' => 1));
628 $this->assign('additionalParticipant', $additionalParticipant);
629 }
630 }
631 $this->addButtons(array(
632 array(
633 'type' => 'next',
634 'name' => ts('Delete'),
635 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
636 'isDefault' => TRUE,
637 ),
638 array(
639 'type' => 'cancel',
640 'name' => ts('Cancel'),
641 ),
642 )
643 );
644 return;
645 }
646
647 if ($this->_single && $this->_context == 'standalone') {
648 $this->addEntityRef('contact_id', ts('Contact'), array(
649 'create' => TRUE,
650 'api' => array('extra' => array('email')),
651 ), TRUE);
652 }
653
654 $eventFieldParams = array(
655 'entity' => 'event',
656 'select' => array('minimumInputLength' => 0),
657 'api' => array(
658 'extra' => array('campaign_id', 'default_role_id', 'event_type_id'),
659 ),
660 );
661
662 if ($this->_mode) {
663 // exclude events which are not monetary when credit card registration is used
664 $eventFieldParams['api']['params']['is_monetary'] = 1;
665 $this->add('select', 'payment_processor_id', ts('Payment Processor'), $this->_processors, TRUE);
666 }
667
668 $element = $this->addEntityRef('event_id', ts('Event'), $eventFieldParams, TRUE);
669
670 //frozen the field fix for CRM-4171
671 if ($this->_action & CRM_Core_Action::UPDATE && $this->_id) {
672 if (CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
673 $this->_id, 'contribution_id', 'participant_id'
674 )
675 ) {
676 $element->freeze();
677 }
678 }
679
680 //CRM-7362 --add campaigns.
681 $campaignId = NULL;
682 if ($this->_id) {
683 $campaignId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'campaign_id');
684 }
685 if (!$campaignId) {
686 $eventId = CRM_Utils_Request::retrieve('eid', 'Positive', $this);
687 if ($eventId) {
688 $campaignId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $eventId, 'campaign_id');
689 }
690 }
691 CRM_Campaign_BAO_Campaign::addCampaign($this, $campaignId);
692
693 $this->addDateTime('register_date', ts('Registration Date'), TRUE, array('formatType' => 'activityDateTime'));
694
695 if ($this->_id) {
696 $this->assign('entityID', $this->_id);
697 }
698
699 $this->addSelect('role_id', array('multiple' => TRUE, 'class' => 'huge'), TRUE);
700
701 // CRM-4395
702 $checkCancelledJs = array('onchange' => "return sendNotification( );");
703 $confirmJS = NULL;
704 if ($this->_onlinePendingContributionId) {
705 $cancelledparticipantStatusId = array_search('Cancelled', CRM_Event_PseudoConstant::participantStatus());
706 $cancelledContributionStatusId = array_search('Cancelled',
707 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
708 );
709 $checkCancelledJs = array(
710 'onchange' => "checkCancelled( this.value, {$cancelledparticipantStatusId},{$cancelledContributionStatusId});",
711 );
712
713 $participantStatusId = array_search('Pending from pay later',
714 CRM_Event_PseudoConstant::participantStatus()
715 );
716 $contributionStatusId = array_search('Completed',
717 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
718 );
719 $confirmJS = array('onclick' => "return confirmStatus( {$participantStatusId}, {$contributionStatusId} );");
720 }
721
722 // get the participant status names to build special status array which is used to show notification
723 // checkbox below participant status select
724 $participantStatusName = CRM_Event_PseudoConstant::participantStatus();
725 $notificationStatuses = array(
726 'Cancelled',
727 'Pending from waitlist',
728 'Pending from approval',
729 'Expired',
730 );
731
732 // get the required status and then implode only ids
733 $notificationStatusIds = implode(',', array_keys(array_intersect($participantStatusName, $notificationStatuses)));
734 $this->assign('notificationStatusIds', $notificationStatusIds);
735
736 $this->_participantStatuses = $statusOptions = CRM_Event_BAO_Participant::buildOptions('status_id', 'create');
737
738 // Only show refund status when editing
739 if ($this->_action & CRM_Core_Action::ADD) {
740 $pendingRefundStatusId = array_search('Pending refund', $participantStatusName);
741 if ($pendingRefundStatusId) {
742 unset($statusOptions[$pendingRefundStatusId]);
743 }
744 }
745
746 $this->addSelect('status_id', $checkCancelledJs + array(
747 'options' => $statusOptions,
748 'option_url' => 'civicrm/admin/participant_status',
749 ), TRUE);
750
751 $this->addElement('checkbox', 'is_notify', ts('Send Notification'), NULL);
752
753 $this->add('text', 'source', ts('Event Source'));
754 $noteAttributes = CRM_Core_DAO::getAttribute('CRM_Core_DAO_Note');
755 $this->add('textarea', 'note', ts('Notes'), $noteAttributes['note']);
756
757 $buttons[] = array(
758 'type' => 'upload',
759 'name' => ts('Save'),
760 'isDefault' => TRUE,
761 'js' => $confirmJS,
762 );
763
764 $path = CRM_Utils_System::currentPath();
765 $excludeForPaths = array(
766 'civicrm/contact/search',
767 'civicrm/group/search',
768 );
769 if (!in_array($path, $excludeForPaths)) {
770 $buttons[] = array(
771 'type' => 'upload',
772 'name' => ts('Save and New'),
773 'subName' => 'new',
774 'js' => $confirmJS,
775 );
776 }
777
778 $buttons[] = array(
779 'type' => 'cancel',
780 'name' => ts('Cancel'),
781 );
782
783 $this->addButtons($buttons);
784 if ($this->_action == CRM_Core_Action::VIEW) {
785 $this->freeze();
786 }
787 }
788
789 /**
790 * Add local and global form rules.
791 *
792 *
793 * @return void
794 */
795 public function addRules() {
796 $this->addFormRule(array('CRM_Event_Form_Participant', 'formRule'), $this);
797 }
798
799 /**
800 * Global validation rules for the form.
801 *
802 * @param array $values
803 * Posted values of the form.
804 * @param $files
805 * @param $self
806 *
807 * @return array
808 * list of errors to be posted back to the form
809 */
810 public static function formRule($values, $files, $self) {
811 // If $values['_qf_Participant_next'] is Delete or
812 // $values['event_id'] is empty, then return
813 // instead of proceeding further.
814
815 if ((CRM_Utils_Array::value('_qf_Participant_next', $values) == 'Delete') ||
816 (!$values['event_id'])
817 ) {
818 return TRUE;
819 }
820
821 $errorMsg = array();
822
823 if (!empty($values['payment_processor_id'])) {
824 // make sure that payment instrument values (e.g. credit card number and cvv) are valid
825 CRM_Core_Payment_Form::validatePaymentInstrument($values['payment_processor_id'], $values, $errorMsg, $self);
826 }
827
828 if (!empty($values['record_contribution'])) {
829 if (empty($values['financial_type_id'])) {
830 $errorMsg['financial_type_id'] = ts('Please enter the associated Financial Type');
831 }
832 if (empty($values['payment_instrument_id'])) {
833 $errorMsg['payment_instrument_id'] = ts('Paid By is a required field.');
834 }
835 }
836
837 // validate contribution status for 'Failed'.
838 if ($self->_onlinePendingContributionId && !empty($values['record_contribution']) &&
839 (CRM_Utils_Array::value('contribution_status_id', $values) ==
840 array_search('Failed', CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name'))
841 )
842 ) {
843 $errorMsg['contribution_status_id'] = ts('Please select a valid payment status before updating.');
844 }
845
846 // do the amount validations.
847 //skip for update mode since amount is freeze, CRM-6052
848 if ((!$self->_id && empty($values['total_amount']) &&
849 empty($self->_values['line_items'])
850 ) ||
851 ($self->_id && !$self->_paymentId && isset($self->_values['line_items']) && is_array($self->_values['line_items']))
852 ) {
853 if ($priceSetId = CRM_Utils_Array::value('priceSetId', $values)) {
854 CRM_Price_BAO_PriceField::priceSetValidation($priceSetId, $values, $errorMsg, TRUE);
855 }
856 }
857 // For single additions - show validation error if the contact has already been registered
858 // for this event with the same role.
859 if ($self->_single && ($self->_action & CRM_Core_Action::ADD)) {
860 $contactId = $self->_contactId;
861 $eventId = CRM_Utils_Array::value('event_id', $values);
862 if (!empty($contactId) && !empty($eventId)) {
863 $dupeCheck = new CRM_Event_BAO_Participant();
864 $dupeCheck->contact_id = $contactId;
865 $dupeCheck->event_id = $eventId;
866 $dupeCheck->find(TRUE);
867 if (!empty($dupeCheck->id)) {
868 $errorMsg['event_id'] = ts("This contact has already been assigned to this event.");
869 }
870 }
871 }
872 return CRM_Utils_Array::crmIsEmptyArray($errorMsg) ? TRUE : $errorMsg;
873 }
874
875 /**
876 * Process the form submission.
877 */
878 public function postProcess() {
879 // get the submitted form values.
880 $params = $this->controller->exportValues($this->_name);
881
882 if ($this->_action & CRM_Core_Action::DELETE) {
883 if (CRM_Utils_Array::value('delete_participant', $params) == 2) {
884 $additionalId = (CRM_Event_BAO_Participant::getAdditionalParticipantIds($this->_id));
885 $participantLinks = (CRM_Event_BAO_Participant::getAdditionalParticipantUrl($additionalId));
886 }
887 if (CRM_Utils_Array::value('delete_participant', $params) == 1) {
888 $additionalIds = CRM_Event_BAO_Participant::getAdditionalParticipantIds($this->_id);
889 foreach ($additionalIds as $value) {
890 CRM_Event_BAO_Participant::deleteParticipant($value);
891 }
892 }
893 CRM_Event_BAO_Participant::deleteParticipant($this->_id);
894 CRM_Core_Session::setStatus(ts('Selected participant was deleted successfully.'), ts('Record Deleted'), 'success');
895 if (!empty($participantLinks)) {
896 $status = ts('The following participants no longer have an event fee recorded. You can edit their registration and record a replacement contribution by clicking the links below:') . '<br/>' . $participantLinks;
897 CRM_Core_Session::setStatus($status, ts('Group Payment Deleted'));
898 }
899 return;
900 }
901 // When adding a single contact, the formRule prevents you from adding duplicates
902 // (See above in formRule()). When adding more than one contact, the duplicates are
903 // removed automatically and the user receives one notification.
904 if ($this->_action & CRM_Core_Action::ADD) {
905 $event_id = $this->_eventId;
906 if (empty($event_id) && !empty($params['event_id'])) {
907 $event_id = $params['event_id'];
908 }
909 if (!$this->_single && !empty($event_id)) {
910 $duplicateContacts = 0;
911 while (list($k, $dupeCheckContactId) = each($this->_contactIds)) {
912 // Eliminate contacts that have already been assigned to this event.
913 $dupeCheck = new CRM_Event_BAO_Participant();
914 $dupeCheck->contact_id = $dupeCheckContactId;
915 $dupeCheck->event_id = $event_id;
916 $dupeCheck->find(TRUE);
917 if (!empty($dupeCheck->id)) {
918 $duplicateContacts++;
919 unset($this->_contactIds[$k]);
920 }
921 }
922 if ($duplicateContacts > 0) {
923 $msg = ts(
924 "%1 contacts have already been assigned to this event. They were not added a second time.",
925 array(1 => $duplicateContacts)
926 );
927 CRM_Core_Session::setStatus($msg);
928 }
929 if (count($this->_contactIds) == 0) {
930 CRM_Core_Session::setStatus(ts("No participants were added."));
931 return;
932 }
933 // We have to re-key $this->_contactIds so each contact has the same
934 // key as their corresponding record in the $participants array that
935 // will be created below.
936 $this->_contactIds = array_values($this->_contactIds);
937 }
938 }
939
940 $participantStatus = CRM_Event_PseudoConstant::participantStatus();
941 // set the contact, when contact is selected
942 if (!empty($params['contact_id'])) {
943 $this->_contactId = $params['contact_id'];
944 }
945 if ($this->_priceSetId && $isQuickConfig = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config')) {
946 $this->_quickConfig = $isQuickConfig;
947 }
948
949 if ($this->_id) {
950 $params['id'] = $this->_id;
951 }
952
953 $config = CRM_Core_Config::singleton();
954 if ($this->_isPaidEvent) {
955
956 $contributionParams = array();
957 $lineItem = array();
958 $additionalParticipantDetails = array();
959 if (($this->_id && $this->_action & CRM_Core_Action::UPDATE) && $this->_paymentId) {
960 $participantBAO = new CRM_Event_BAO_Participant();
961 $participantBAO->id = $this->_id;
962 $participantBAO->find(TRUE);
963 $contributionParams['total_amount'] = $participantBAO->fee_amount;
964
965 $params['discount_id'] = NULL;
966 //re-enter the values for UPDATE mode
967 $params['fee_level'] = $params['amount_level'] = $participantBAO->fee_level;
968 $params['fee_amount'] = $participantBAO->fee_amount;
969 if (isset($params['priceSetId'])) {
970 $lineItem[0] = CRM_Price_BAO_LineItem::getLineItems($this->_id);
971 }
972 //also add additional participant's fee level/priceset
973 if (CRM_Event_BAO_Participant::isPrimaryParticipant($this->_id)) {
974 $additionalIds = CRM_Event_BAO_Participant::getAdditionalParticipantIds($this->_id);
975 $hasLineItems = CRM_Utils_Array::value('priceSetId', $params, FALSE);
976 $additionalParticipantDetails = CRM_Event_BAO_Participant::getFeeDetails($additionalIds,
977 $hasLineItems
978 );
979 }
980 }
981 else {
982
983 //check if discount is selected
984 if (!empty($params['discount_id'])) {
985 $discountId = $params['discount_id'];
986 }
987 else {
988 $discountId = $params['discount_id'] = 'null';
989 }
990
991 //lets carry currency, CRM-4453
992 $params['fee_currency'] = $config->defaultCurrency;
993 CRM_Price_BAO_PriceSet::processAmount($this->_values['fee'],
994 $params, $lineItem[0]
995 );
996 //CRM-11529 for quick config backoffice transactions
997 //when financial_type_id is passed in form, update the
998 //lineitems with the financial type selected in form
999 $submittedFinancialType = CRM_Utils_Array::value('financial_type_id', $params);
1000 $isPaymentRecorded = CRM_Utils_Array::value('record_contribution', $params);
1001 if ($isPaymentRecorded && $this->_quickConfig && $submittedFinancialType) {
1002 foreach ($lineItem[0] as &$values) {
1003 $values['financial_type_id'] = $submittedFinancialType;
1004 }
1005 }
1006
1007 $params['fee_level'] = $params['amount_level'];
1008 $contributionParams['total_amount'] = $params['amount'];
1009 if ($this->_quickConfig && !empty($params['total_amount']) &&
1010 $params['status_id'] != array_search('Partially paid', $participantStatus)
1011 ) {
1012 $params['fee_amount'] = $params['total_amount'];
1013 }
1014 else {
1015 //fix for CRM-3086
1016 $params['fee_amount'] = $params['amount'];
1017 }
1018 }
1019
1020 if (isset($params['priceSetId'])) {
1021 if (!empty($lineItem[0])) {
1022 $this->set('lineItem', $lineItem);
1023
1024 $this->_lineItem = $lineItem;
1025 $lineItem = array_merge($lineItem, $additionalParticipantDetails);
1026
1027 $participantCount = array();
1028 foreach ($lineItem as $k) {
1029 foreach ($k as $v) {
1030 if (CRM_Utils_Array::value('participant_count', $v) > 0) {
1031 $participantCount[] = $v['participant_count'];
1032 }
1033 }
1034 }
1035 }
1036 if (isset($participantCount)) {
1037 $this->assign('pricesetFieldsCount', $participantCount);
1038 }
1039 $this->assign('lineItem', empty($lineItem[0]) || $this->_quickConfig ? FALSE : $lineItem);
1040 }
1041 else {
1042 $this->assign('amount_level', $params['amount_level']);
1043 }
1044 }
1045
1046 $this->_params = $params;
1047 $amountOwed = NULL;
1048 if (isset($params['amount'])) {
1049 $amountOwed = $params['amount'];
1050 unset($params['amount']);
1051 }
1052 $params['register_date'] = CRM_Utils_Date::processDate($params['register_date'], $params['register_date_time']);
1053 $params['receive_date'] = CRM_Utils_Date::processDate(CRM_Utils_Array::value('receive_date', $params), CRM_Utils_Array::value('receive_date_time', $params));
1054 $params['contact_id'] = $this->_contactId;
1055
1056 // overwrite actual payment amount if entered
1057 if (!empty($params['total_amount'])) {
1058 $contributionParams['total_amount'] = CRM_Utils_Array::value('total_amount', $params);
1059 }
1060
1061 // Retrieve the name and email of the current user - this will be the FROM for the receipt email
1062 $session = CRM_Core_Session::singleton();
1063 $userID = $session->get('userID');
1064 list($userName,
1065 $userEmail
1066 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($userID);
1067
1068 if ($this->_contactId) {
1069 list($this->_contributorDisplayName, $this->_contributorEmail, $this->_toDoNotEmail) = CRM_Contact_BAO_Contact::getContactDetails($this->_contactId);
1070 }
1071
1072 //modify params according to parameter used in create
1073 //participant method (addParticipant)
1074 $this->_params['participant_status_id'] = $params['status_id'];
1075 $this->_params['participant_role_id'] = is_array($params['role_id']) ? $params['role_id'] : explode(',', $params['role_id']);
1076 $this->_params['participant_register_date'] = $params['register_date'];
1077 $roleIdWithSeparator = implode(CRM_Core_DAO::VALUE_SEPARATOR, $this->_params['participant_role_id']);
1078
1079 if ($this->_mode) {
1080 if (!$this->_isPaidEvent) {
1081 CRM_Core_Error::fatal(ts('Selected Event is not Paid Event '));
1082 }
1083
1084 $eventTitle
1085 = CRM_Core_DAO::getFieldValue(
1086 'CRM_Event_DAO_Event',
1087 $params['event_id'],
1088 'title'
1089 );
1090
1091 // set source if not set
1092 if (empty($params['source'])) {
1093 $this->_params['participant_source'] = ts('Offline Registration for Event: %2 by: %1', array(
1094 1 => $userName,
1095 2 => $eventTitle,
1096 ));
1097 }
1098 else {
1099 $this->_params['participant_source'] = $params['source'];
1100 }
1101 $this->_params['description'] = $this->_params['participant_source'];
1102
1103 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($this->_params['payment_processor_id'],
1104 $this->_mode
1105 );
1106 $now = date('YmdHis');
1107 $fields = array();
1108
1109 // set email for primary location.
1110 $fields['email-Primary'] = 1;
1111 $params['email-Primary'] = $params["email-{$this->_bltID}"] = $this->_contributorEmail;
1112
1113 $params['register_date'] = $now;
1114
1115 // now set the values for the billing location.
1116 foreach ($this->_fields as $name => $dontCare) {
1117 $fields[$name] = 1;
1118 }
1119
1120 // also add location name to the array
1121 $params["address_name-{$this->_bltID}"]
1122 = CRM_Utils_Array::value('billing_first_name', $params) . ' ' .
1123 CRM_Utils_Array::value('billing_middle_name', $params) . ' ' .
1124 CRM_Utils_Array::value('billing_last_name', $params);
1125
1126 $params["address_name-{$this->_bltID}"] = trim($params["address_name-{$this->_bltID}"]);
1127 $fields["address_name-{$this->_bltID}"] = 1;
1128 $fields["email-{$this->_bltID}"] = 1;
1129 $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactId, 'contact_type');
1130
1131 $nameFields = array('first_name', 'middle_name', 'last_name');
1132
1133 foreach ($nameFields as $name) {
1134 $fields[$name] = 1;
1135 if (array_key_exists("billing_$name", $params)) {
1136 $params[$name] = $params["billing_{$name}"];
1137 $params['preserveDBName'] = TRUE;
1138 }
1139 }
1140 $contactID = CRM_Contact_BAO_Contact::createProfileContact($params, $fields, $this->_contactId, NULL, NULL, $ctype);
1141 }
1142
1143 if (!empty($this->_params['participant_role_id'])) {
1144 $customFieldsRole = array();
1145 foreach ($this->_params['participant_role_id'] as $roleKey) {
1146 $customFieldsRole = CRM_Utils_Array::crmArrayMerge(CRM_Core_BAO_CustomField::getFields('Participant',
1147 FALSE, FALSE, $roleKey, $this->_roleCustomDataTypeID), $customFieldsRole);
1148 }
1149 $customFieldsEvent = CRM_Core_BAO_CustomField::getFields('Participant',
1150 FALSE,
1151 FALSE,
1152 CRM_Utils_Array::value('event_id', $params),
1153 $this->_eventNameCustomDataTypeID
1154 );
1155 $customFieldsEventType = CRM_Core_BAO_CustomField::getFields('Participant',
1156 FALSE,
1157 FALSE,
1158 $this->_eventTypeId,
1159 $this->_eventTypeCustomDataTypeID
1160 );
1161 $customFields = CRM_Utils_Array::crmArrayMerge($customFieldsRole,
1162 CRM_Core_BAO_CustomField::getFields('Participant', FALSE, FALSE, NULL, NULL, TRUE)
1163 );
1164 $customFields = CRM_Utils_Array::crmArrayMerge($customFieldsEvent, $customFields);
1165 $customFields = CRM_Utils_Array::crmArrayMerge($customFieldsEventType, $customFields);
1166 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
1167 $this->_id,
1168 'Participant'
1169 );
1170 }
1171
1172 //do cleanup line items if participant edit the Event Fee.
1173 if (($this->_lineItem || !isset($params['proceSetId'])) && !$this->_paymentId && $this->_id) {
1174 CRM_Price_BAO_LineItem::deleteLineItems($this->_id, 'civicrm_participant');
1175 }
1176
1177 if ($this->_mode) {
1178 // add all the additional payment params we need
1179 $this->_params["state_province-{$this->_bltID}"] = $this->_params["billing_state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($this->_params["billing_state_province_id-{$this->_bltID}"]);
1180 $this->_params["country-{$this->_bltID}"] = $this->_params["billing_country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($this->_params["billing_country_id-{$this->_bltID}"]);
1181
1182 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
1183 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
1184 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
1185 $this->_params['amount'] = $params['fee_amount'];
1186 $this->_params['amount_level'] = $params['amount_level'];
1187 $this->_params['currencyID'] = $config->defaultCurrency;
1188 $this->_params['payment_action'] = 'Sale';
1189 $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE));
1190
1191 // at this point we've created a contact and stored its address etc
1192 // all the payment processors expect the name and address to be in the
1193 // so we copy stuff over to first_name etc.
1194 $paymentParams = $this->_params;
1195 if (!empty($this->_params['send_receipt'])) {
1196 $paymentParams['email'] = $this->_contributorEmail;
1197 }
1198
1199 // The only reason for merging in the 'contact_id' rather than ensuring it is set
1200 // is that this patch is being done around the time of the stable release
1201 // so more conservative approach is called for.
1202 // In fact the use of $params and $this->_params & $this->_contactId vs $contactID
1203 // needs rationalising.
1204 $mapParams = array_merge(array('contact_id' => $contactID), $this->_params);
1205 CRM_Core_Payment_Form::mapParams($this->_bltID, $mapParams, $paymentParams, TRUE);
1206
1207 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this);
1208
1209 // CRM-15622: fix for incorrect contribution.fee_amount
1210 $paymentParams['fee_amount'] = NULL;
1211 $result = $payment->doPayment($paymentParams);
1212
1213 if (is_a($result, 'CRM_Core_Error')) {
1214 CRM_Core_Error::displaySessionError($result);
1215 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view/participant',
1216 "reset=1&action=add&cid={$this->_contactId}&context=participant&mode={$this->_mode}"
1217 ));
1218 }
1219
1220 if ($result) {
1221 $this->_params = array_merge($this->_params, $result);
1222 }
1223
1224 $this->_params['receive_date'] = $now;
1225
1226 if (!empty($this->_params['send_receipt'])) {
1227 $this->_params['receipt_date'] = $now;
1228 }
1229 else {
1230 $this->_params['receipt_date'] = NULL;
1231 }
1232
1233 $this->set('params', $this->_params);
1234 $this->assign('trxn_id', $result['trxn_id']);
1235 $this->assign('receive_date',
1236 CRM_Utils_Date::processDate($this->_params['receive_date'])
1237 );
1238
1239 //add contribution record
1240 $this->_params['financial_type_id']
1241 = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $params['event_id'], 'financial_type_id');
1242 $this->_params['mode'] = $this->_mode;
1243
1244 //add contribution record
1245 $contributions[] = $contribution = CRM_Event_Form_Registration_Confirm::processContribution($this, $this->_params, $result, $contactID, FALSE);
1246
1247 // add participant record
1248 $participants = array();
1249 if (!empty($this->_params['role_id']) && is_array($this->_params['role_id'])) {
1250 $this->_params['role_id'] = implode(CRM_Core_DAO::VALUE_SEPARATOR,
1251 $this->_params['role_id']
1252 );
1253 }
1254
1255 //CRM-15372 patch to fix fee amount replacing amount
1256 $this->_params['fee_amount'] = $this->_params['amount'];
1257
1258 $participants[] = CRM_Event_Form_Registration::addParticipant($this, $contactID);
1259
1260 //add custom data for participant
1261 CRM_Core_BAO_CustomValueTable::postProcess($this->_params,
1262 'civicrm_participant',
1263 $participants[0]->id,
1264 'Participant'
1265 );
1266 //add participant payment
1267 $paymentParticipant = array(
1268 'participant_id' => $participants[0]->id,
1269 'contribution_id' => $contribution->id,
1270 );
1271 $ids = array();
1272
1273 CRM_Event_BAO_ParticipantPayment::create($paymentParticipant, $ids);
1274 $this->_contactIds[] = $this->_contactId;
1275 }
1276 else {
1277 $participants = array();
1278 if ($this->_single) {
1279 if ($params['role_id']) {
1280 $params['role_id'] = $roleIdWithSeparator;
1281 }
1282 else {
1283 $params['role_id'] = 'NULL';
1284 }
1285 $participants[] = CRM_Event_BAO_Participant::create($params);
1286 }
1287 else {
1288 foreach ($this->_contactIds as $contactID) {
1289 $commonParams = $params;
1290 $commonParams['contact_id'] = $contactID;
1291 if ($commonParams['role_id']) {
1292 $commonParams['role_id'] = $commonParams['role_id'] = str_replace(',', CRM_Core_DAO::VALUE_SEPARATOR, $params['role_id']);
1293 }
1294 else {
1295 $commonParams['role_id'] = 'NULL';
1296 }
1297 $participants[] = CRM_Event_BAO_Participant::create($commonParams);
1298 }
1299 }
1300
1301 if (isset($params['event_id'])) {
1302 $eventTitle = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event',
1303 $params['event_id'],
1304 'title'
1305 );
1306 }
1307
1308 if ($this->_single) {
1309 $this->_contactIds[] = $this->_contactId;
1310 }
1311
1312 $contributions = array();
1313 if (!empty($params['record_contribution'])) {
1314 if (!empty($params['id'])) {
1315 if ($this->_onlinePendingContributionId) {
1316 $ids['contribution'] = $this->_onlinePendingContributionId;
1317 }
1318 else {
1319 $ids['contribution'] = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
1320 $params['id'],
1321 'contribution_id',
1322 'participant_id'
1323 );
1324 }
1325 }
1326 unset($params['note']);
1327
1328 //build contribution params
1329 if (!$this->_onlinePendingContributionId) {
1330 if (empty($params['source'])) {
1331 $contributionParams['source'] = ts('%1 : Offline registration (by %2)', array(
1332 1 => $eventTitle,
1333 2 => $userName,
1334 ));
1335 }
1336 else {
1337 $contributionParams['source'] = $params['source'];
1338 }
1339 }
1340
1341 $contributionParams['currency'] = $config->defaultCurrency;
1342 $contributionParams['non_deductible_amount'] = 'null';
1343 $contributionParams['receipt_date'] = !empty($params['send_receipt']) ? CRM_Utils_Array::value('receive_date', $params) : 'null';
1344
1345 $recordContribution = array(
1346 'contact_id',
1347 'financial_type_id',
1348 'payment_instrument_id',
1349 'trxn_id',
1350 'contribution_status_id',
1351 'receive_date',
1352 'check_number',
1353 'campaign_id',
1354 );
1355
1356 foreach ($recordContribution as $f) {
1357 $contributionParams[$f] = CRM_Utils_Array::value($f, $params);
1358 if ($f == 'trxn_id') {
1359 $this->assign('trxn_id', $contributionParams[$f]);
1360 }
1361 }
1362
1363 //insert financial type name in receipt.
1364 $this->assign('contributionTypeName', CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $contributionParams['financial_type_id']));
1365 $contributionParams['skipLineItem'] = 1;
1366 if ($this->_id) {
1367 $contributionParams['contribution_mode'] = 'participant';
1368 $contributionParams['participant_id'] = $this->_id;
1369 }
1370 // Set is_pay_later flag for back-office offline Pending status contributions
1371 if ($contributionParams['contribution_status_id'] == CRM_Core_OptionGroup::getValue('contribution_status', 'Pending', 'name')) {
1372 $contributionParams['is_pay_later'] = 1;
1373 }
1374 elseif ($contributionParams['contribution_status_id'] == CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name')) {
1375 $contributionParams['is_pay_later'] = 0;
1376 }
1377
1378 if ($params['status_id'] == array_search('Partially paid', $participantStatus)) {
1379 if (!$amountOwed && $this->_action & CRM_Core_Action::UPDATE) {
1380 $amountOwed = $params['fee_amount'];
1381 }
1382
1383 // if multiple participants are link, consider contribution total amount as the amount Owed
1384 if ($this->_id && CRM_Event_BAO_Participant::isPrimaryParticipant($this->_id)) {
1385 $amountOwed = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution',
1386 $ids['contribution'],
1387 'total_amount'
1388 );
1389 }
1390
1391 // CRM-13964 partial_payment_total
1392 if ($amountOwed > $params['total_amount']) {
1393 // the owed amount
1394 $contributionParams['partial_payment_total'] = $amountOwed;
1395 // the actual amount paid
1396 $contributionParams['partial_amount_pay'] = $params['total_amount'];
1397 }
1398 }
1399
1400 if (CRM_Utils_Array::value('tax_amount', $this->_params)) {
1401 $contributionParams['tax_amount'] = $this->_params['tax_amount'];
1402 }
1403
1404 if ($this->_single) {
1405 if (empty($ids)) {
1406 $ids = array();
1407 }
1408 $contributions[] = CRM_Contribute_BAO_Contribution::create($contributionParams, $ids);
1409 }
1410 else {
1411 $ids = array();
1412 foreach ($this->_contactIds as $contactID) {
1413 $contributionParams['contact_id'] = $contactID;
1414 $contributions[] = CRM_Contribute_BAO_Contribution::create($contributionParams, $ids);
1415 }
1416 }
1417
1418 //insert payment record for this participation
1419 if (empty($ids['contribution'])) {
1420 foreach ($this->_contactIds as $num => $contactID) {
1421 $ppDAO = new CRM_Event_DAO_ParticipantPayment();
1422 $ppDAO->participant_id = $participants[$num]->id;
1423 $ppDAO->contribution_id = $contributions[$num]->id;
1424 $ppDAO->save();
1425 }
1426 }
1427 // next create the transaction record
1428 $transaction = new CRM_Core_Transaction();
1429
1430 // CRM-11124
1431 if ($this->_quickConfig) {
1432 if (!empty($this->_params['amount_priceset_level_radio'])) {
1433 $feeLevel = $this->_params['amount_priceset_level_radio'];
1434 }
1435 else {
1436 $feeLevel[] = $this->_params['fee_level'];
1437 }
1438 CRM_Event_BAO_Participant::createDiscountTrxn($this->_eventId, $contributionParams, $feeLevel);
1439 }
1440 $transaction->commit();
1441 }
1442 }
1443
1444 // also store lineitem stuff here
1445 if ((($this->_lineItem & $this->_action & CRM_Core_Action::ADD) ||
1446 ($this->_lineItem && CRM_Core_Action::UPDATE && !$this->_paymentId))
1447 ) {
1448 foreach ($this->_contactIds as $num => $contactID) {
1449 foreach ($this->_lineItem as $key => $value) {
1450 if (is_array($value) && $value != 'skip') {
1451 foreach ($value as $lineKey => $line) {
1452 //10117 update the line items for participants if contribution amount is recorded
1453 if ($this->_quickConfig && !empty($params['total_amount']) &&
1454 ($params['status_id'] != array_search('Partially paid', $participantStatus))
1455 ) {
1456 $line['unit_price'] = $line['line_total'] = $params['total_amount'];
1457 if (!empty($params['tax_amount'])) {
1458 $line['unit_price'] = $line['unit_price'] - $params['tax_amount'];
1459 $line['line_total'] = $line['line_total'] - $params['tax_amount'];
1460 }
1461 }
1462 $lineItem[$this->_priceSetId][$lineKey] = $line;
1463 }
1464 CRM_Price_BAO_LineItem::processPriceSet($participants[$num]->id, $lineItem, CRM_Utils_Array::value($num, $contributions, NULL), 'civicrm_participant');
1465 }
1466 }
1467 }
1468 }
1469
1470 $updateStatusMsg = NULL;
1471 //send mail when participant status changed, CRM-4326
1472 if ($this->_id && $this->_statusId &&
1473 $this->_statusId != CRM_Utils_Array::value('status_id', $params) && !empty($params['is_notify'])
1474 ) {
1475
1476 $updateStatusMsg = CRM_Event_BAO_Participant::updateStatusMessage($this->_id,
1477 $params['status_id'],
1478 $this->_statusId
1479 );
1480 }
1481
1482 $sent = array();
1483 $notSent = array();
1484 if (!empty($params['send_receipt'])) {
1485 if (array_key_exists($params['from_email_address'], $this->_fromEmails['from_email_id'])) {
1486 $receiptFrom = $params['from_email_address'];
1487 }
1488
1489 $this->assign('module', 'Event Registration');
1490 //use of the message template below requires variables in different format
1491 $event = $events = array();
1492 $returnProperties = array('fee_label', 'start_date', 'end_date', 'is_show_location', 'title');
1493
1494 //get all event details.
1495 CRM_Core_DAO::commonRetrieveAll('CRM_Event_DAO_Event', 'id', $params['event_id'], $events, $returnProperties);
1496 $event = $events[$params['event_id']];
1497 unset($event['start_date']);
1498 unset($event['end_date']);
1499
1500 $role = CRM_Event_PseudoConstant::participantRole();
1501 $participantRoles = CRM_Utils_Array::value('role_id', $params);
1502 if (is_array($participantRoles)) {
1503 $selectedRoles = array();
1504 foreach ($participantRoles as $roleId) {
1505 $selectedRoles[] = $role[$roleId];
1506 }
1507 $event['participant_role'] = implode(', ', $selectedRoles);
1508 }
1509 else {
1510 $event['participant_role'] = CRM_Utils_Array::value($participantRoles, $role);
1511 }
1512 $event['is_monetary'] = $this->_isPaidEvent;
1513
1514 if ($params['receipt_text']) {
1515 $event['confirm_email_text'] = $params['receipt_text'];
1516 }
1517
1518 $this->assign('isAmountzero', 1);
1519 $this->assign('event', $event);
1520
1521 $this->assign('isShowLocation', $event['is_show_location']);
1522 if (CRM_Utils_Array::value('is_show_location', $event) == 1) {
1523 $locationParams = array(
1524 'entity_id' => $params['event_id'],
1525 'entity_table' => 'civicrm_event',
1526 );
1527 $location = CRM_Core_BAO_Location::getValues($locationParams, TRUE);
1528 $this->assign('location', $location);
1529 }
1530
1531 $status = CRM_Event_PseudoConstant::participantStatus();
1532 if ($this->_isPaidEvent) {
1533 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
1534 if (!$this->_mode) {
1535 if (isset($params['payment_instrument_id'])) {
1536 $this->assign('paidBy',
1537 CRM_Utils_Array::value($params['payment_instrument_id'],
1538 $paymentInstrument
1539 )
1540 );
1541 }
1542 }
1543
1544 $this->assign('totalAmount', $contributionParams['total_amount']);
1545 if (isset($contributionParams['partial_payment_total'])) {
1546 // balance amount
1547 $balanceAmount = $contributionParams['partial_payment_total'] - $contributionParams['partial_amount_pay'];
1548 $this->assign('balanceAmount', $balanceAmount);
1549 }
1550 $this->assign('isPrimary', 1);
1551 $this->assign('checkNumber', CRM_Utils_Array::value('check_number', $params));
1552 }
1553 if ($this->_mode) {
1554 if (!empty($params['billing_first_name'])) {
1555 $name = $params['billing_first_name'];
1556 }
1557
1558 if (!empty($params['billing_middle_name'])) {
1559 $name .= " {$params['billing_middle_name']}";
1560 }
1561
1562 if (!empty($params['billing_last_name'])) {
1563 $name .= " {$params['billing_last_name']}";
1564 }
1565 $this->assign('billingName', $name);
1566
1567 // assign the address formatted up for display
1568 $addressParts = array(
1569 "street_address-{$this->_bltID}",
1570 "city-{$this->_bltID}",
1571 "postal_code-{$this->_bltID}",
1572 "state_province-{$this->_bltID}",
1573 "country-{$this->_bltID}",
1574 );
1575 $addressFields = array();
1576 foreach ($addressParts as $part) {
1577 list($n, $id) = explode('-', $part);
1578 if (isset($this->_params['billing_' . $part])) {
1579 $addressFields[$n] = $this->_params['billing_' . $part];
1580 }
1581 }
1582 $this->assign('address', CRM_Utils_Address::format($addressFields));
1583
1584 $date = CRM_Utils_Date::format($params['credit_card_exp_date']);
1585 $date = CRM_Utils_Date::mysqlToIso($date);
1586 $this->assign('credit_card_exp_date', $date);
1587 $this->assign('credit_card_number',
1588 CRM_Utils_System::mungeCreditCard($params['credit_card_number'])
1589 );
1590 $this->assign('credit_card_type', $params['credit_card_type']);
1591 $this->assign('contributeMode', 'direct');
1592 $this->assign('isAmountzero', 0);
1593 $this->assign('is_pay_later', 0);
1594 $this->assign('isPrimary', 1);
1595 }
1596
1597 $this->assign('register_date', $params['register_date']);
1598 if ($params['receive_date']) {
1599 $this->assign('receive_date', $params['receive_date']);
1600 }
1601
1602 $participant = array(array('participant_id', '=', $participants[0]->id, 0, 0));
1603 // check whether its a test drive ref CRM-3075
1604 if (!empty($this->_defaultValues['is_test'])) {
1605 $participant[] = array('participant_test', '=', 1, 0, 0);
1606 }
1607
1608 $template = CRM_Core_Smarty::singleton();
1609 $customGroup = array();
1610 //format submitted data
1611 foreach ($params['custom'] as $fieldID => $values) {
1612 foreach ($values as $fieldValue) {
1613 $customValue = array('data' => $fieldValue['value']);
1614 $customFields[$fieldID]['id'] = $fieldID;
1615 $formattedValue = CRM_Core_BAO_CustomGroup::formatCustomValues($customValue, $customFields[$fieldID], TRUE);
1616 $customGroup[$customFields[$fieldID]['groupTitle']][$customFields[$fieldID]['label']] = str_replace('&nbsp;', '', $formattedValue);
1617 }
1618 }
1619
1620 foreach ($this->_contactIds as $num => $contactID) {
1621 // Retrieve the name and email of the contact - this will be the TO for receipt email
1622 list($this->_contributorDisplayName, $this->_contributorEmail, $this->_toDoNotEmail) = CRM_Contact_BAO_Contact::getContactDetails($contactID);
1623
1624 $this->_contributorDisplayName = ($this->_contributorDisplayName == ' ') ? $this->_contributorEmail : $this->_contributorDisplayName;
1625
1626 $waitStatus = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Waiting'");
1627 if ($waitingStatus = CRM_Utils_Array::value($params['status_id'], $waitStatus)) {
1628 $this->assign('isOnWaitlist', TRUE);
1629 }
1630
1631 $this->assign('customGroup', $customGroup);
1632 $this->assign('contactID', $contactID);
1633 $this->assign('participantID', $participants[$num]->id);
1634
1635 $this->_id = $participants[$num]->id;
1636
1637 if ($this->_isPaidEvent) {
1638 // fix amount for each of participants ( for bulk mode )
1639 $eventAmount = array();
1640 $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
1641 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
1642 $totalTaxAmount = 0;
1643
1644 //add dataArray in the receipts in ADD and UPDATE condition
1645 $dataArray = array();
1646 if ($this->_action & CRM_Core_Action::ADD) {
1647 $line = $lineItem[0];
1648 }
1649 elseif ($this->_action & CRM_Core_Action::UPDATE) {
1650 $line = $this->_values['line_items'];
1651 }
1652 if ($invoicing) {
1653 foreach ($line as $key => $value) {
1654 if (isset($value['tax_amount'])) {
1655 $totalTaxAmount += $value['tax_amount'];
1656 if (isset($dataArray[(string) $value['tax_rate']])) {
1657 $dataArray[(string) $value['tax_rate']] = $dataArray[(string) $value['tax_rate']] + CRM_Utils_Array::value('tax_amount', $value);
1658 }
1659 else {
1660 $dataArray[(string) $value['tax_rate']] = CRM_Utils_Array::value('tax_amount', $value);
1661 }
1662 }
1663 }
1664 $this->assign('totalTaxAmount', $totalTaxAmount);
1665 $this->assign('taxTerm', CRM_Utils_Array::value('tax_term', $invoiceSettings));
1666 $this->assign('dataArray', $dataArray);
1667 }
1668 if (!empty($additionalParticipantDetails)) {
1669 $params['amount_level'] = preg_replace('/\ 1/', '', $params['amount_level']) . ' - ' . $this->_contributorDisplayName;
1670 }
1671
1672 $eventAmount[$num] = array(
1673 'label' => preg_replace('/\ 1/', '', $params['amount_level']),
1674 'amount' => $params['fee_amount'],
1675 );
1676 //as we are using same template for online & offline registration.
1677 //So we have to build amount as array.
1678 $eventAmount = array_merge($eventAmount, $additionalParticipantDetails);
1679 $this->assign('amount', $eventAmount);
1680 }
1681
1682 $sendTemplateParams = array(
1683 'groupName' => 'msg_tpl_workflow_event',
1684 'valueName' => 'event_offline_receipt',
1685 'contactId' => $contactID,
1686 'isTest' => (bool) CRM_Utils_Array::value('is_test', $this->_defaultValues),
1687 'PDFFilename' => ts('confirmation') . '.pdf',
1688 );
1689
1690 // try to send emails only if email id is present
1691 // and the do-not-email option is not checked for that contact
1692 if ($this->_contributorEmail and !$this->_toDoNotEmail) {
1693 $sendTemplateParams['from'] = $receiptFrom;
1694 $sendTemplateParams['toName'] = $this->_contributorDisplayName;
1695 $sendTemplateParams['toEmail'] = $this->_contributorEmail;
1696 $sendTemplateParams['cc'] = CRM_Utils_Array::value('cc', $this->_fromEmails);
1697 $sendTemplateParams['bcc'] = CRM_Utils_Array::value('bcc', $this->_fromEmails);
1698 }
1699
1700 //send email with pdf invoice
1701 $template = CRM_Core_Smarty::singleton();
1702 $taxAmt = $template->get_template_vars('dataArray');
1703 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment',
1704 $this->_id, 'contribution_id', 'participant_id'
1705 );
1706 $prefixValue = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
1707 $invoicing = CRM_Utils_Array::value('invoicing', $prefixValue);
1708 if (count($taxAmt) > 0 && (isset($invoicing) && isset($prefixValue['is_email_pdf']))) {
1709 $sendTemplateParams['isEmailPdf'] = TRUE;
1710 $sendTemplateParams['contributionId'] = $contributionId;
1711 }
1712 list($mailSent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
1713 if ($mailSent) {
1714 $sent[] = $contactID;
1715 foreach ($participants as $ids => $values) {
1716 if ($values->contact_id == $contactID) {
1717 $values->details = CRM_Utils_Array::value('receipt_text', $params);
1718 CRM_Activity_BAO_Activity::addActivity($values, 'Email');
1719 break;
1720 }
1721 }
1722 }
1723 else {
1724 $notSent[] = $contactID;
1725 }
1726 }
1727 }
1728
1729 // set the participant id if it is not set
1730 if (!$this->_id) {
1731 $this->_id = $participants[0]->id;
1732 }
1733
1734 if (($this->_action & CRM_Core_Action::UPDATE)) {
1735 $statusMsg = ts('Event registration information for %1 has been updated.', array(1 => $this->_contributorDisplayName));
1736 if (!empty($params['send_receipt']) && count($sent)) {
1737 $statusMsg .= ' ' . ts('A confirmation email has been sent to %1', array(1 => $this->_contributorEmail));
1738 }
1739
1740 if ($updateStatusMsg) {
1741 $statusMsg = "{$statusMsg} {$updateStatusMsg}";
1742 }
1743 }
1744 elseif ($this->_action & CRM_Core_Action::ADD) {
1745 if ($this->_single) {
1746 $statusMsg = ts('Event registration for %1 has been added.', array(1 => $this->_contributorDisplayName));
1747 if (!empty($params['send_receipt']) && count($sent)) {
1748 $statusMsg .= ' ' . ts('A confirmation email has been sent to %1.', array(1 => $this->_contributorEmail));
1749 }
1750 }
1751 else {
1752 $statusMsg = ts('Total Participant(s) added to event: %1.', array(1 => count($this->_contactIds)));
1753 if (count($notSent) > 0) {
1754 $statusMsg .= ' ' . ts('Email has NOT been sent to %1 contact(s) - communication preferences specify DO NOT EMAIL OR valid Email is NOT present. ', array(1 => count($notSent)));
1755 }
1756 elseif (isset($params['send_receipt'])) {
1757 $statusMsg .= ' ' . ts('A confirmation email has been sent to ALL participants');
1758 }
1759 }
1760 }
1761 CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
1762
1763 $buttonName = $this->controller->getButtonName();
1764 if ($this->_context == 'standalone') {
1765 if ($buttonName == $this->getButtonName('upload', 'new')) {
1766 $urlParams = 'reset=1&action=add&context=standalone';
1767 if ($this->_mode) {
1768 $urlParams .= '&mode=' . $this->_mode;
1769 }
1770 if ($this->_eID) {
1771 $urlParams .= '&eid=' . $this->_eID;
1772 }
1773 $session->replaceUserContext(CRM_Utils_System::url('civicrm/participant/add', $urlParams));
1774 }
1775 else {
1776 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
1777 "reset=1&cid={$this->_contactId}&selectedChild=participant"
1778 ));
1779 }
1780 }
1781 elseif ($buttonName == $this->getButtonName('upload', 'new')) {
1782 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view/participant',
1783 "reset=1&action=add&context={$this->_context}&cid={$this->_contactId}"
1784 ));
1785 }
1786 }
1787
1788 }