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