Merge pull request #4764 from rohankatkar/CRM-15615
[civicrm-core.git] / CRM / Event / Form / ManageEvent / Registration.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36
37/**
38 * This class generates form components for processing Event
39 *
40 */
41class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent {
42
43 /**
100fef9d 44 * What blocks should we show and hide.
6a488035
TO
45 *
46 * @var CRM_Core_ShowHideBlocks
47 */
48 protected $_showHide;
49
50 protected $_profilePostMultiple = array();
51 protected $_profilePostMultipleAdd = array();
52
53 /**
100fef9d 54 * Set variables up before form is built
6a488035
TO
55 *
56 * @return void
57 * @access public
f55dc004 58 */
6a488035
TO
59 function preProcess() {
60 $this->_addProfileBottom = CRM_Utils_Array::value('addProfileBottom', $_GET, FALSE);
61 $this->_profileBottomNum = CRM_Utils_Array::value('addProfileNum', $_GET, 0);
62 $this->_addProfileBottomAdd = CRM_Utils_Array::value('addProfileBottomAdd', $_GET, FALSE);
63 $this->_profileBottomNumAdd = CRM_Utils_Array::value('addProfileNumAdd', $_GET, 0);
64
65 parent::preProcess();
66
67 $this->assign('addProfileBottom', $this->_addProfileBottom);
68 $this->assign('profileBottomNum', $this->_profileBottomNum);
69
70 $urlParams = "id={$this->_id}&addProfileBottom=1&qfKey={$this->controller->_key}";
71 $this->assign('addProfileParams', $urlParams);
72
73 if ($addProfileBottom = CRM_Utils_Array::value('custom_post_id_multiple', $_POST)) {
74 foreach (array_keys($addProfileBottom) as $profileNum) {
75 self::buildMultipleProfileBottom($this, $profileNum);
76 }
77 }
78
79 $this->assign('addProfileBottomAdd', $this->_addProfileBottomAdd);
80 $this->assign('profileBottomNumAdd', $this->_profileBottomNumAdd);
81
82 $urlParamsAdd = "id={$this->_id}&addProfileBottomAdd=1&qfKey={$this->controller->_key}";
83 $this->assign('addProfileParamsAdd', $urlParamsAdd);
84
85 if ($addProfileBottomAdd = CRM_Utils_Array::value('additional_custom_post_id_multiple', $_POST)) {
86 foreach (array_keys($addProfileBottomAdd) as $profileNum) {
87 self::buildMultipleProfileBottom($this, $profileNum, 'additional_', ts('Profile for Additional Participants'));
88 }
89 }
90 }
91
92 /**
c490a46a 93 * Set default values for the form.
6a488035
TO
94 * the default values are retrieved from the database
95 *
96 * @access public
97 *
355ba699 98 * @return void
6a488035
TO
99 */
100 function setDefaultValues() {
101 if ($this->_addProfileBottom || $this->_addProfileBottomAdd) {
102 return;
103 }
104 $eventId = $this->_id;
105
106 $defaults = parent::setDefaultValues();
107
108 $this->setShowHide($defaults);
109 if (isset($eventId)) {
110 $params = array('id' => $eventId);
111 CRM_Event_BAO_Event::retrieve($params, $defaults);
112
113 $ufJoinParams = array(
114 'entity_table' => 'civicrm_event',
115 'module' => 'CiviEvent',
116 'entity_id' => $eventId,
117 );
118
119 list($defaults['custom_pre_id'],
120 $defaults['custom_post']
121 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
122
123 // Get the id for the event registration profile
124 $eventRegistrationIdParams = $eventRegistrationIdDefaults = array(
125 'name' => 'event_registration',
126 );
127 CRM_Core_BAO_UFGroup::retrieve($eventRegistrationIdParams, $eventRegistrationIdDefaults);
128
129 // Set event registration as the default profile if none selected
130 if (!$defaults['custom_pre_id'] && count($defaults['custom_post']) == 0) {
131 $defaults['custom_pre_id'] = CRM_Utils_Array::value('id', $eventRegistrationIdDefaults);
132 }
133 if (isset($defaults['custom_post']) && is_numeric($defaults['custom_post'])) {
134 $defaults['custom_post_id'] = $defaults['custom_post'];
135 }
136 elseif (!empty($defaults['custom_post'])) {
137 $defaults['custom_post_id'] = $defaults['custom_post'][0];
138 unset($defaults['custom_post'][0]);
139 $this->_profilePostMultiple = $defaults['custom_post'];
140 foreach ($defaults['custom_post'] as $key => $value) {
141 self::buildMultipleProfileBottom($this, $key);
142 $defaults["custom_post_id_multiple[$key]"] = $value;
143 }
144 }
145
146 $this->assign('profilePostMultiple', CRM_Utils_Array::value('custom_post', $defaults));
147
a7488080 148 if (!empty($defaults['is_multiple_registrations'])) {
6a488035
TO
149 // CRM-4377: set additional participants’ profiles – set to ‘none’ if explicitly unset (non-active)
150
151 $ufJoinAddParams = array(
152 'entity_table' => 'civicrm_event',
153 'module' => 'CiviEvent_Additional',
154 'entity_id' => $eventId,
155 );
156
157 list($defaults['additional_custom_pre_id'],
158 $defaults['additional_custom_post']
159 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinAddParams);
160
161 if (isset($defaults['additional_custom_post']) && is_numeric($defaults['additional_custom_post'])) {
162 $defaults['additional_custom_post_id'] = $defaults['additional_custom_post'];
163 }
164 elseif (!empty($defaults['additional_custom_post'])) {
165 $defaults['additional_custom_post_id'] = $defaults['additional_custom_post'][0];
166 unset($defaults['additional_custom_post'][0]);
167
168 $this->_profilePostMultipleAdd = $defaults['additional_custom_post'];
169 foreach ($defaults['additional_custom_post'] as $key => $value) {
170 self::buildMultipleProfileBottom($this, $key, 'additional_', ts('Profile for Additional Participants'));
171 $defaults["additional_custom_post_id_multiple[$key]"] = $value;
172 }
173 }
174 $this->assign('profilePostMultipleAdd', CRM_Utils_Array::value('additional_custom_post', $defaults));
175 }
176 }
177 else {
178 $defaults['is_email_confirm'] = 0;
179 }
180
181 // provide defaults for required fields if empty (and as a 'hint' for approval message field)
182 $defaults['registration_link_text'] = CRM_Utils_Array::value('registration_link_text', $defaults, ts('Register Now'));
183 $defaults['confirm_title'] = CRM_Utils_Array::value('confirm_title', $defaults, ts('Confirm Your Registration Information'));
184 $defaults['thankyou_title'] = CRM_Utils_Array::value('thankyou_title', $defaults, ts('Thank You for Registering'));
185 $defaults['approval_req_text'] = CRM_Utils_Array::value('approval_req_text', $defaults, ts('Participation in this event requires approval. Submit your registration request here. Once approved, you will receive an email with a link to a web page where you can complete the registration process.'));
186
a7488080 187 if (!empty($defaults['registration_start_date'])) {
6a488035
TO
188 list($defaults['registration_start_date'],
189 $defaults['registration_start_date_time']
190 ) = CRM_Utils_Date::setDateDefaults($defaults['registration_start_date'],
191 'activityDateTime'
192 );
193 }
194
a7488080 195 if (!empty($defaults['registration_end_date'])) {
6a488035
TO
196 list($defaults['registration_end_date'],
197 $defaults['registration_end_date_time']
198 ) = CRM_Utils_Date::setDateDefaults($defaults['registration_end_date'],
199 'activityDateTime'
200 );
201 }
202
203 return $defaults;
204 }
205
206 /**
207 * Fix what blocks to show/hide based on the default values set
208 *
77b97be7
EM
209 * @param array $defaults the array of default values
210 *
6a488035
TO
211 * @return void
212 */
213 function setShowHide($defaults) {
214 $this->_showHide = new CRM_Core_ShowHideBlocks(array('registration' => 1),
215 ''
216 );
217 if (empty($defaults)) {
218 $this->_showHide->addHide('registration');
6a488035
TO
219 $this->_showHide->addHide('id-approval-text');
220 }
221 else {
a7488080 222 if (empty($defaults['requires_approval'])) {
6a488035
TO
223 $this->_showHide->addHide('id-approval-text');
224 }
225 }
226 $this->assign('defaultsEmpty', empty($defaults));
227 $this->_showHide->addToTemplate();
228 }
229
230 /**
c490a46a 231 * Build the form object
6a488035 232 *
355ba699 233 * @return void
6a488035
TO
234 * @access public
235 */
236 public function buildQuickForm() {
237 if ($this->_addProfileBottom) {
238 return self::buildMultipleProfileBottom($this, $this->_profileBottomNum);
239 }
240
241 if ($this->_addProfileBottomAdd) {
242 return self::buildMultipleProfileBottom($this, $this->_profileBottomNumAdd, 'additional_', ts('Profile for Additional Participants'));
243 }
244
245 $this->applyFilter('__ALL__', 'trim');
246 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
247
248 $this->addElement('checkbox',
249 'is_online_registration',
0781df9b 250 ts('Allow Online Registration'),
6a488035
TO
251 NULL,
252 array(
f55dc004 253 'onclick' => "return showHideByValue('is_online_registration',
254 '',
255 'registration_blocks',
256 'block',
257 'radio',
6a488035
TO
258 false );",
259 )
260 );
261
262 $this->add('text', 'registration_link_text', ts('Registration Link Text'));
263
264 if (!$this->_isTemplate) {
265 $this->addDateTime('registration_start_date', ts('Registration Start Date'), FALSE, array('formatType' => 'activityDateTime'));
266 $this->addDateTime('registration_end_date', ts('Registration End Date'), FALSE, array('formatType' => 'activityDateTime'));
267 }
268
269 $params = array(
270 'used' => 'Supervised',
271 'contact_type' => 'Individual',
272 );
273 $dedupeRuleFields = CRM_Dedupe_BAO_Rule::dedupeRuleFields($params);
274
275 foreach ($dedupeRuleFields as $key => $fields) {
276 $ruleFields[$key] = ucwords(str_replace('_', ' ', $fields));
277 }
278
279 $this->addElement('checkbox',
280 'is_multiple_registrations',
b01353b5 281 ts('Register multiple participants?')
6a488035
TO
282 );
283
284 $this->addElement('checkbox',
285 'allow_same_participant_emails',
03390e26 286 ts('Same email address?')
6a488035
TO
287 );
288 $this->assign('ruleFields', json_encode($ruleFields));
289
03390e26 290 $dedupeRules = array(
291 '' => '- Unsupervised rule -',
292 );
293 $dedupeRules += CRM_Dedupe_BAO_RuleGroup::getByType('Individual');
294 $this->add('select', 'dedupe_rule_group_id', ts('Duplicate matching rule'), $dedupeRules);
295
6a488035
TO
296 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
297 if (in_array('Awaiting approval', $participantStatuses) and in_array('Pending from approval', $participantStatuses) and in_array('Rejected', $participantStatuses)) {
298 $this->addElement('checkbox',
299 'requires_approval',
300 ts('Require participant approval?'),
301 NULL,
302 array('onclick' => "return showHideByValue('requires_approval', '', 'id-approval-text', 'table-row', 'radio', false);")
303 );
304 $this->add('textarea', 'approval_req_text', ts('Approval message'), $attributes['approval_req_text']);
305 }
306
307 $this->add('text', 'expiration_time', ts('Pending participant expiration (hours)'));
308 $this->addRule('expiration_time', ts('Please enter the number of hours (as an integer).'), 'integer');
309
310 self::buildRegistrationBlock($this);
311 self::buildConfirmationBlock($this);
312 self::buildMailBlock($this);
313 self::buildThankYouBlock($this);
314
315 parent::buildQuickForm();
316 }
317
318 /**
100fef9d 319 * Build Registration Block
6a488035 320 *
c490a46a 321 * @param CRM_Core_Form $form
da6b46f4 322 *
6a488035
TO
323 * @static
324 */
325 function buildRegistrationBlock(&$form) {
326 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
413923b2 327 $attributes['intro_text']['click_wysiwyg'] = true;
6a488035
TO
328 $form->addWysiwyg('intro_text', ts('Introductory Text'), $attributes['intro_text']);
329 // FIXME: This hack forces height of editor to 175px. Need to modify QF classes for editors to allow passing
330 // explicit height and width.
413923b2
DG
331 $footerAttribs = array(
332 'rows' => 2,
333 'cols' => 40,
334 'click_wysiwyg' => true,
335 );
336 $form->addWysiwyg('footer_text', ts('Footer Text'), $footerAttribs);
6a488035 337
b9feacb8 338 extract( self::getProfileSelectorTypes() );
99e239bc 339 //CRM-15427
340 $form->addProfileSelector( 'custom_pre_id', ts('Include Profile') . '<br />' . ts('(top of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
341 $form->addProfileSelector( 'custom_post_id', ts('Include Profile') . '<br />' . ts('(bottom of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
6a488035 342
99e239bc 343 $form->addProfileSelector( 'additional_custom_pre_id', ts('Profile for Additional Participants') . '<br />' . ts('(top of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
344 $form->addProfileSelector( 'additional_custom_post_id', ts('Profile for Additional Participants') . '<br />' . ts('(bottom of page)'), $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
6a488035
TO
345 }
346
8e8a3d81 347 /**
348 * Subroutine to insert a Profile Editor widget
349 * depends on getProfileSelectorTypes
03390e26 350 *
8e8a3d81 351 * @param array &$form
352 * @param int $count unique index
353 * @param string $prefix dom element ID prefix
61739595 354 * @param string $label Label
8e8a3d81 355 * @param array $configs Optional, for addProfileSelector(), defaults to using getProfileSelectorTypes()
356 **/
61739595 357 function buildMultipleProfileBottom(&$form, $count, $prefix = '', $label = 'Include Profile', $configs = null) {
b9feacb8 358 extract( ( is_null($configs) ) ? self::getProfileSelectorTypes() : $configs );
518ef837 359 $element = $prefix . "custom_post_id_multiple[$count]";
61739595 360 $label .= '<br />'.ts('(bottom of page)');
05a98cea 361 $form->addProfileSelector( $element, $label, $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE);
518ef837 362 }
363
8e8a3d81 364 /**
365 * Create initializers for addprofileSelector
366 *
367 * @return array( 'allowCoreTypes' => array(), 'allowSubTypes' => array(), 'profileEntities' => array() )
368 **/
b9feacb8 369 static function getProfileSelectorTypes() {
518ef837 370 $configs = array(
371 'allowCoreTypes' => array(),
372 'allowSubTypes' => array(),
373 'profileEntities' => array(),
6a488035
TO
374 );
375
21fced3b 376 $configs['allowCoreTypes'] = array_merge(array('Contact', 'Individual'), CRM_Contact_BAO_ContactType::subTypes('Individual'));
518ef837 377 $configs['allowCoreTypes'][] = 'Participant';
99e239bc 378 //CRM-15427
0b1c947e 379 $id = CRM_Utils_Request::retrieve( 'id' , 'Integer' );
380 if ($id) {
efd9f169 381 $participantEventType = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Event", $id, 'event_type_id', 'id');
382 $participantRole = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $id, 'default_role_id');
383 $configs['allowSubTypes']['ParticipantEventName'] = array($id);
f80ef0e2 384 $configs['allowSubTypes']['ParticipantEventType'] = array($participantEventType);
385 $configs['allowSubTypes']['ParticipantRole'] = array($participantRole);
386 }
529410b5 387 $configs['profileEntities'][] = array('entity_name' => 'contact_1', 'entity_type' => 'IndividualModel');
99e239bc 388 $configs['profileEntities'][] = array('entity_name' => 'participant_1', 'entity_type' => 'ParticipantModel', 'entity_sub_type' => '*');
6a488035 389
518ef837 390 return $configs;
6a488035
TO
391 }
392
393 /**
100fef9d 394 * Build Confirmation Block
6a488035 395 *
c490a46a 396 * @param CRM_Core_Form $form
2a6da8d7 397 *
6a488035
TO
398 * @static
399 */
400 function buildConfirmationBlock(&$form) {
401 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
948562c5 402 $attributes['confirm_text']['click_wysiwyg'] = true;
d6121d3e 403 // CRM-11182 - Optional confirmation page for free events
404 $is_monetary = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $form->_id, 'is_monetary');
405 $form->assign('is_monetary', $is_monetary);
406 if ($is_monetary == "0") {
407 $form->addYesNo('is_confirm_enabled', ts('Use a confirmation screen?'), NULL, NULL, array('onclick' => "return showHideByValue('is_confirm_enabled','','confirm_screen_settings','block','radio',false);"));
408 }
6a488035
TO
409 $form->add('text', 'confirm_title', ts('Title'), $attributes['confirm_title']);
410 $form->addWysiwyg('confirm_text', ts('Introductory Text'), $attributes['confirm_text']);
411 // FIXME: This hack forces height of editor to 175px. Need to modify QF classes for editors to allow passing
412 // explicit height and width.
948562c5
DG
413 $footerAttribs = array(
414 'rows' => 2,
415 'cols' => 40,
416 'click_wysiwyg' => true,
417 );
418 $form->addWysiwyg('confirm_footer_text', ts('Footer Text'), $footerAttribs);
6a488035
TO
419 }
420
421 /**
100fef9d 422 * Build Email Block
6a488035 423 *
c490a46a 424 * @param CRM_Core_Form $form
2a6da8d7 425 *
6a488035
TO
426 * @static
427 */
428 function buildMailBlock(&$form) {
429 $form->registerRule('emailList', 'callback', 'emailList', 'CRM_Utils_Rule');
430 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
431 $form->addYesNo('is_email_confirm', ts('Send Confirmation Email?'), NULL, NULL, array('onclick' => "return showHideByValue('is_email_confirm','','confirmEmail','block','radio',false);"));
432 $form->add('textarea', 'confirm_email_text', ts('Text'), $attributes['confirm_email_text']);
433 $form->add('text', 'cc_confirm', ts('CC Confirmation To'), CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'cc_confirm'));
434 $form->addRule('cc_confirm', ts('Please enter a valid list of comma delimited email addresses'), 'emailList');
435 $form->add('text', 'bcc_confirm', ts('BCC Confirmation To'), CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'bcc_confirm'));
436 $form->addRule('bcc_confirm', ts('Please enter a valid list of comma delimited email addresses'), 'emailList');
437 $form->add('text', 'confirm_from_name', ts('Confirm From Name'));
438 $form->add('text', 'confirm_from_email', ts('Confirm From Email'));
439 $form->addRule('confirm_from_email', ts('Email is not valid.'), 'email');
440 }
441
0cf587a7 442 /**
c490a46a 443 * @param CRM_Core_Form $form
0cf587a7 444 */
6a488035
TO
445 function buildThankYouBlock(&$form) {
446 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
413923b2 447 $attributes['thankyou_text']['click_wysiwyg'] = true;
6a488035
TO
448 $form->add('text', 'thankyou_title', ts('Title'), $attributes['thankyou_title']);
449 $form->addWysiwyg('thankyou_text', ts('Introductory Text'), $attributes['thankyou_text']);
450 // FIXME: This hack forces height of editor to 175px. Need to modify QF classes for editors to allow passing
451 // explicit height and width.
413923b2
DG
452 $footerAttribs = array(
453 'rows' => 2,
454 'cols' => 40,
455 'click_wysiwyg' => true,
456 );
457 $form->addWysiwyg('thankyou_footer_text', ts('Footer Text'), $footerAttribs);
6a488035
TO
458 }
459
460 /**
461 * Add local and global form rules
462 *
463 * @access protected
464 *
465 * @return void
466 */
467 function addRules() {
468 if ($this->_addProfileBottom || $this->_addProfileBottomAdd) {
469 return;
470 }
471 $this->addFormRule(array('CRM_Event_Form_ManageEvent_Registration', 'formRule'), $this);
472 }
473
474 /**
100fef9d 475 * Global validation rules for the form
6a488035 476 *
c490a46a 477 * @param array $values
2a6da8d7 478 * @param $files
c490a46a 479 * @param CRM_Core_Form $form
6a488035
TO
480 *
481 * @return array list of errors to be posted back to the form
482 * @static
483 * @access public
484 */
485 static function formRule($values, $files, $form) {
a7488080 486 if (!empty($values['is_online_registration'])) {
6a488035
TO
487
488 if (!$values['confirm_title']) {
489 $errorMsg['confirm_title'] = ts('Please enter a Title for the registration Confirmation Page');
490 }
491 if (!$values['thankyou_title']) {
492 $errorMsg['thankyou_title'] = ts('Please enter a Title for the registration Thank-you Page');
493 }
494 if ($values['is_email_confirm']) {
495 if (!$values['confirm_from_name']) {
496 $errorMsg['confirm_from_name'] = ts('Please enter Confirmation Email FROM Name.');
497 }
498
499 if (!$values['confirm_from_email']) {
500 $errorMsg['confirm_from_email'] = ts('Please enter Confirmation Email FROM Email Address.');
501 }
502 }
f55dc004 503
ef597b45
DL
504 if (
505 isset($values['registration_start_date']) &&
506 isset($values['registration_end_date'])
507 ) {
6a488035
TO
508 $start = CRM_Utils_Date::processDate($values['registration_start_date']);
509 $end = CRM_Utils_Date::processDate($values['registration_end_date']);
510 if ($end < $start) {
511 $errorMsg['registration_end_date'] = ts('Registration end date should be after Registration start date');
512 }
513 }
514
515 //check that the selected profiles have either firstname+lastname or email required
516 $profileIds = array(
517 CRM_Utils_Array::value('custom_pre_id', $values),
518 CRM_Utils_Array::value('custom_post_id', $values),
519 );
520 $additionalProfileIds = array(
521 CRM_Utils_Array::value('additional_custom_pre_id', $values),
522 CRM_Utils_Array::value('additional_custom_post_id', $values),
523 );
524 //additional profile fields default to main if not set
525 if (!is_numeric($additionalProfileIds[0])) {
526 $additionalProfileIds[0] = $profileIds[0];
527 }
528 if (!is_numeric($additionalProfileIds[1])) {
529 $additionalProfileIds[1] = $profileIds[1];
530 }
531 //add multiple profiles if set
532 self::addMultipleProfiles($profileIds, $values, 'custom_post_id_multiple');
533 self::addMultipleProfiles($additionalProfileIds, $values, 'additional_custom_post_id_multiple');
534 $isProfileComplete = self::isProfileComplete($profileIds);
535 $isAdditionalProfileComplete = self::isProfileComplete($additionalProfileIds);
03390e26 536
6a488035
TO
537 //Check main profiles have an email address available if 'send confirmation email' is selected
538 if ($values['is_email_confirm']) {
539 $emailFields = self::getEmailFields($profileIds);
540 if (!count($emailFields)) {
541 $errorMsg['is_email_confirm'] = ts("Please add a profile with an email address if 'Send Confirmation Email?' is selected");
542 }
543 }
544 $additionalCustomPreId = $additionalCustomPostId = NULL;
545 $isPreError = $isPostError = TRUE;
8cc574cf 546 if (!empty($values['allow_same_participant_emails']) && !empty($values['is_multiple_registrations'])) {
6a488035
TO
547 $types = array_merge(array('Individual'), CRM_Contact_BAO_ContactType::subTypes('Individual'));
548 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types);
549
550 //check for additional custom pre profile
551 $additionalCustomPreId = CRM_Utils_Array::value('additional_custom_pre_id', $values);
552 if (!empty($additionalCustomPreId)) {
553 if (!($additionalCustomPreId == 'none')) {
554 $customPreId = $additionalCustomPreId;
555 }
556 else {
557 $isPreError = FALSE;
558 }
559 }
560 else {
0d8afee2 561 $customPreId = !empty($values['custom_pre_id']) ? $values['custom_pre_id'] : NULL;
6a488035
TO
562 }
563 //check whether the additional custom pre profile is of type 'Individual' and its subtypes
564 if (!empty($customPreId)) {
565 $profileTypes = CRM_Core_BAO_UFGroup::profileGroups($customPreId);
566 foreach ($types as $individualTypes) {
567 if (in_array($individualTypes, $profileTypes)) {
568 $isPreError = FALSE;
569 break;
570 }
571 }
572 }
573 else {
574 $isPreError = FALSE;
575 }
f55dc004 576
dbeb7efb
DG
577 // We don't have required Individual fields in the pre-custom profile, so now check the post-custom profile
578 if ($isPreError) {
579 $additionalCustomPostId = CRM_Utils_Array::value('additional_custom_post_id', $values);
580 if (!empty($additionalCustomPostId)) {
581 if (!($additionalCustomPostId == 'none')) {
582 $customPostId = $additionalCustomPostId;
583 }
584 else {
585 $isPostError = FALSE;
586 }
6a488035
TO
587 }
588 else {
0d8afee2 589 $customPostId = !empty($values['custom_post_id']) ? $values['custom_post_id'] : NULL;
6a488035 590 }
dbeb7efb
DG
591 //check whether the additional custom post profile is of type 'Individual' and its subtypes
592 if (!empty($customPostId)) {
593 $profileTypes = CRM_Core_BAO_UFGroup::profileGroups($customPostId);
594 foreach ($types as $individualTypes) {
595 if (in_array($individualTypes, $profileTypes)) {
596 $isPostError = FALSE;
597 break;
598 }
6a488035
TO
599 }
600 }
dbeb7efb
DG
601 else {
602 $isPostError = FALSE;
603 }
604
605 if (empty($customPreId) && empty($customPostId)) {
606 $errorMsg['additional_custom_pre_id'] = ts("Allow multiple registrations from the same email address requires a profile of type 'Individual'");
607 }
608 if ($isPostError) {
609 $errorMsg['additional_custom_post_id'] = ts("Allow multiple registrations from the same email address requires a profile of type 'Individual'");
610 }
6a488035
TO
611 }
612 }
613 if (!$isProfileComplete) {
614 $errorMsg['custom_pre_id'] = ts("Please include a Profile for online registration that contains an Email Address field and / or First Name + Last Name fields.");
615 }
616 if (!$isAdditionalProfileComplete) {
617 $errorMsg['additional_custom_pre_id'] = ts("Please include a Profile for online registration of additional participants that contains an Email Address field and / or First Name + Last Name fields.");
618 }
619
620 // // CRM-8485
621 // $config = CRM_Core_Config::singleton();
622 // if ( $config->doNotAttachPDFReceipt ) {
a7488080 623 // if (!empty($values['custom_post_id_multiple'])) {
6a488035
TO
624 // foreach( $values['custom_post_id_multiple'] as $count => $customPostMultiple ) {
625 // if ( $customPostMultiple ) {
626 // $errorMsg["custom_post_id_multiple[{$count}]"] = ts('Please disable PDF receipt as an attachment in <a href="%1">Miscellaneous Settings</a> if you want to add additional profiles.', array( 1 => CRM_Utils_System::url( 'civicrm/admin/setting/misc', 'reset=1' ) ) );
627 // break;
628 // }
629 // }
630 // }
631 //
a7488080 632 // if (!empty($values['is_multiple_registrations']) &&
6a488035
TO
633 // CRM_Utils_Array::value('additional_custom_post_id_multiple', $values) ) {
634 // foreach( $values['additional_custom_post_id_multiple'] as $count => $customPostMultiple ) {
635 // if ( $customPostMultiple ) {
636 // $errorMsg["additional_custom_post_id_multiple[{$count}]"] = ts('Please disable PDF receipt as an attachment in <a href="%1">Miscellaneous Settings</a> if you want to add additional profiles.', array( 1 => CRM_Utils_System::url( 'civicrm/admin/setting/misc', 'reset=1' ) ) );
637 // break;
638 // }
639 // }
640 // }
641 // }
642
643 if (!empty($errorMsg)) {
a7488080 644 if (!empty($values['custom_post_id_multiple'])) {
6a488035
TO
645 foreach ($values['custom_post_id_multiple'] as $count => $customPostMultiple) {
646 self::buildMultipleProfileBottom($form, $count);
647 }
648 $form->assign('profilePostMultiple', $values['custom_post_id_multiple']);
649 }
a7488080 650 if (!empty($values['additional_custom_post_id_multiple'])) {
6a488035
TO
651 foreach ($values['additional_custom_post_id_multiple'] as $count => $customPostMultiple) {
652 self::buildMultipleProfileBottom($form, $count, 'additional_', ts('Profile for Additional Participants'));
653 }
654 $form->assign('profilePostMultipleAdd', $values['additional_custom_post_id_multiple']);
655 }
656 }
657 }
658
659 if (!empty($errorMsg)) {
660 return $errorMsg;
661 }
662
663 return TRUE;
664 }
665
666 /**
667 * Collect all email fields for an array of profile ids
668 *
2a6da8d7 669 * @param $profileIds
6a488035
TO
670 * @return boolean
671 */
672 static function getEmailFields($profileIds) {
673 $emailFields = array();
674 foreach ($profileIds as $profileId) {
675 if ($profileId && is_numeric($profileId)) {
676 $fields = CRM_Core_BAO_UFGroup::getFields($profileId);
677 foreach ($fields as $field) {
678 if (substr_count($field['name'], 'email')) {
679 $emailFields[] = $field;
680 }
681 }
682 }
683 }
684 return $emailFields;
685 }
686
687 /**
688 * Check if a profile contains required fields
689 *
2a6da8d7 690 * @param $profileIds
6a488035
TO
691 * @return boolean
692 */
693 static function isProfileComplete($profileIds) {
694 $profileReqFields = array();
695 foreach ($profileIds as $profileId) {
696 if ($profileId && is_numeric($profileId)) {
697 $fields = CRM_Core_BAO_UFGroup::getFields($profileId);
698 foreach ($fields as $field) {
699 switch (TRUE) {
700 case substr_count($field['name'], 'email'):
701 $profileReqFields[] = 'email';
702 break;
703
704 case substr_count($field['name'], 'first_name'):
705 $profileReqFields[] = 'first_name';
706 break;
707
708 case substr_count($field['name'], 'last_name'):
709 $profileReqFields[] = 'last_name';
710 break;
711 }
712 }
713 }
714 }
715 $profileComplete = (in_array('email', $profileReqFields)
716 || (in_array('first_name', $profileReqFields) && in_array('last_name', $profileReqFields))
717 );
718 return $profileComplete;
719 }
720
03390e26 721 /**
722 * Check if the profiles collect enough information to dedupe
723 *
2a6da8d7
EM
724 * @param $profileIds
725 * @param int $rgId
03390e26 726 * @return boolean
727 */
728
729 function canProfilesDedupe($profileIds, $rgId = 0) {
730
731 // find the unsupervised rule
732
733 $rgParams = array(
734 'used' => 'Unsupervised',
735 'contact_type' => 'Individual',
736 );
737 if ($rgId > 0) {
738 $rgParams['id'] = $rgId;
739 }
740 $activeRg = CRM_Dedupe_BAO_RuleGroup::dedupeRuleFieldsWeight($rgParams);
741
742 // get the combinations that could be a match for the rule
743 $okCombos = $combos = array();
744 CRM_Dedupe_BAO_RuleGroup::combos($activeRg[0], $activeRg[1], $combos);
745
746 // create an index of what combinations involve each field
747 $index = array();
748 foreach ($combos as $comboid => $combo) {
749 foreach ($combo as $cfield) {
750 $index[$cfield][$comboid] = true;
751 }
752 $combos[$comboid] = array_fill_keys($combo, 0);
753 $okCombos[$comboid] = array_fill_keys($combo, 2);
754 }
755
756 // get profiles and see if they have the necessary combos
757 $profileReqFields = array();
758 foreach ($profileIds as $profileId) {
759 if ($profileId && is_numeric($profileId)) {
760 $fields = CRM_Core_BAO_UFGroup::getFields($profileId);
761
762 // walk through the fields in the profile
763 foreach ($fields as $field) {
764
765 // check each of the fields in the index against the profile field
766 foreach ($index as $ifield => $icombos) {
767 if(strpos($field['name'], $ifield) !== false) {
768
769 // we found the field in the profile, now record it in the index
770 foreach ($icombos as $icombo => $dontcare) {
771 $combos[$icombo][$ifield] = ($combos[$icombo][$ifield] != 2 && !$field['is_required']) ? 1 : 2;
772
773 if ($combos[$icombo] == $okCombos[$icombo]) {
774 // if any combo is complete with 2s (all fields are present and required), we can go home
775 return 2;
776 }
777 }
778 }
779 }
780 }
781 }
782 }
783
784 // check the combos to see if everything is > 0
785 foreach ($combos as $comboid => $combo) {
786 $complete = false;
787 foreach ($combo as $cfield) {
788 if ($cfield > 0) {
789 $complete = true;
790 }
791 else {
792 // this combo isn't complete--skip to the next combo
793 continue 2;
794 }
795 }
796 if ($complete) { return 1; }
797 }
798
799 // no combo succeeded
800 return 0;
801 }
802
6a488035
TO
803 /**
804 * Add additional profiles from the form to an array of profile ids.
805 *
806 */
807 static function addMultipleProfiles(&$profileIds, $values, $field) {
808 if ($multipleProfiles = CRM_Utils_Array::value($field, $values)) {
809 foreach ($multipleProfiles as $profileId) {
810 $profileIds[] = $profileId;
811 }
812 }
813 }
814
815 /**
c490a46a 816 * Process the form submission
6a488035
TO
817 *
818 * @access public
819 *
355ba699 820 * @return void
6a488035
TO
821 */
822 public function postProcess() {
6a488035
TO
823 $params = $this->exportValues();
824
825 $params['id'] = $this->_id;
826
1909126f 827 // format params
6a488035 828 $params['is_online_registration'] = CRM_Utils_Array::value('is_online_registration', $params, FALSE);
1909126f 829 $params['is_confirm_enabled'] = CRM_Utils_Array::value('is_confirm_enabled', $params, FALSE); // CRM-11182
6a488035
TO
830 $params['is_multiple_registrations'] = CRM_Utils_Array::value('is_multiple_registrations', $params, FALSE);
831 $params['allow_same_participant_emails'] = CRM_Utils_Array::value('allow_same_participant_emails', $params, FALSE);
832 $params['requires_approval'] = CRM_Utils_Array::value('requires_approval', $params, FALSE);
833
834 // reset is_email confirm if not online reg
835 if (!$params['is_online_registration']) {
836 $params['is_email_confirm'] = FALSE;
837 }
838
839 if (!$this->_isTemplate) {
840 $params['registration_start_date'] = CRM_Utils_Date::processDate($params['registration_start_date'],
841 $params['registration_start_date_time'],
842 TRUE
843 );
844 $params['registration_end_date'] = CRM_Utils_Date::processDate($params['registration_end_date'],
845 $params['registration_end_date_time'],
846 TRUE
847 );
848 }
849
850 CRM_Event_BAO_Event::add($params);
851
852 // also update the ProfileModule tables
853 $ufJoinParams = array(
854 'is_active' => 1,
855 'module' => 'CiviEvent',
856 'entity_table' => 'civicrm_event',
857 'entity_id' => $this->_id,
858 );
859
860
861 // first delete all past entries
862 CRM_Core_BAO_UFJoin::deleteAll($ufJoinParams);
863
864 $uf = array();
865 $wt = 2;
866 if (!empty($params['custom_pre_id'])) {
867 $uf[1] = $params['custom_pre_id'];
868 $wt = 1;
869 }
870
871 if (!empty($params['custom_post_id'])) {
872 $uf[2] = $params['custom_post_id'];
873 }
874
a7488080 875 if (!empty($params['custom_post_id_multiple'])) {
6a488035
TO
876 $uf = array_merge($uf, $params['custom_post_id_multiple']);
877 }
878 $uf = array_values($uf);
879 if (!empty($uf)) {
880 foreach ($uf as $weight => $ufGroupId) {
881 $ufJoinParams['weight'] = $weight + $wt;
882 $ufJoinParams['uf_group_id'] = $ufGroupId;
883 CRM_Core_BAO_UFJoin::create($ufJoinParams);
884 unset($ufJoinParams['id']);
885 }
886 }
887 // also update the ProfileModule tables
888 $ufJoinParamsAdd = array(
889 'is_active' => 1,
890 'module' => 'CiviEvent_Additional',
891 'entity_table' => 'civicrm_event',
892 'entity_id' => $this->_id,
893 );
894
895 // first delete all past entries
896 CRM_Core_BAO_UFJoin::deleteAll($ufJoinParamsAdd);
a7488080 897 if (!empty($params['is_multiple_registrations'])) {
6a488035
TO
898 $ufAdd = array();
899 $wtAdd = 2;
900
901 if (array_key_exists('additional_custom_pre_id', $params)) {
a7488080 902 if (empty($params['additional_custom_pre_id'])) {
6a488035
TO
903 $ufAdd[1] = $params['custom_pre_id'];
904 $wtAdd = 1;
905 }
906 elseif (CRM_Utils_Array::value('additional_custom_pre_id', $params) == 'none') {}
907 else {
908 $ufAdd[1] = $params['additional_custom_pre_id'];
909 $wtAdd = 1;
910 }
911 }
912
913 if (array_key_exists('additional_custom_post_id', $params)) {
a7488080 914 if (empty($params['additional_custom_post_id'])) {
6a488035
TO
915 $ufAdd[2] = $params['custom_post_id'];
916 }
917 elseif (CRM_Utils_Array::value('additional_custom_post_id', $params) == 'none') {}
918 else {
919 $ufAdd[2] = $params['additional_custom_post_id'];
920 }
921 }
922
a7488080 923 if (!empty($params['additional_custom_post_id_multiple'])) {
6a488035
TO
924 $additionalPostMultiple = array();
925 foreach ($params['additional_custom_post_id_multiple'] as $key => $value) {
85944a4e 926 if (is_null($value) && !empty($params['custom_post_id'])) {
6a488035
TO
927 $additionalPostMultiple[$key] = $params['custom_post_id'];
928 }
929 elseif ($value == 'none') {
930 continue;
931 }
932 elseif ($value) {
933 $additionalPostMultiple[$key] = $value;
934 }
935 }
936 $ufAdd = array_merge($ufAdd, $additionalPostMultiple);
937 }
938
939 $ufAdd = array_values($ufAdd);
940 if (!empty($ufAdd)) {
941 foreach ($ufAdd as $weightAdd => $ufGroupIdAdd) {
942
943 $ufJoinParamsAdd['weight'] = $weightAdd + $wtAdd;
944 $ufJoinParamsAdd['uf_group_id'] = $ufGroupIdAdd;
945
946 CRM_Core_BAO_UFJoin::create($ufJoinParamsAdd);
947 unset($ufJoinParamsAdd['id']);
948 }
949 }
950 }
951
03390e26 952 // get the profiles to evaluate what they collect
953 $profileIds = array(
954 CRM_Utils_Array::value('custom_pre_id', $params),
955 CRM_Utils_Array::value('custom_post_id', $params),
956 );
957 $additionalProfileIds = array(
958 CRM_Utils_Array::value('additional_custom_pre_id', $params),
959 CRM_Utils_Array::value('additional_custom_post_id', $params),
960 );
961 // additional profile fields default to main if not set
962 if (!is_numeric($additionalProfileIds[0])) {
963 $additionalProfileIds[0] = $profileIds[0];
964 }
965 if (!is_numeric($additionalProfileIds[1])) {
966 $additionalProfileIds[1] = $profileIds[1];
967 }
968 //add multiple profiles if set
969 self::addMultipleProfiles($profileIds, $params, 'custom_post_id_multiple');
970 self::addMultipleProfiles($additionalProfileIds, $params, 'additional_custom_post_id_multiple');
971
972 $cantDedupe = false;
973 $rgId = CRM_Utils_Array::value('dedupe_rule_group_id', $params, 0);
974
975 switch (self::canProfilesDedupe($profileIds, $rgId)) {
976 case 0:
977 $dedupeTitle = 'Duplicate Matching Impossible';
978 $cantDedupe = ts("The selected profiles do not contain the fields necessary to match registrations with existing contacts. This means all anonymous registrations will result in a new contact.");
979 break;
980 case 1:
981 $dedupeTitle = 'Duplicate Contacts Possible';
982 $cantDedupe = ts("The selected profiles can collect enough information to match registrations with existing contacts, but not all of the relevant fields are required. Anonymous registrations may result in duplicate contacts.");
983 }
984 if (!empty($params['is_multiple_registrations'])) {
985 switch(self::canProfilesDedupe($additionalProfileIds, $rgId)) {
986 case 0:
987 $dedupeTitle = 'Duplicate Matching Impossible';
988 if ($cantDedupe) {
989 $cantDedupe = ts("The selected profiles do not contain the fields necessary to match registrations with existing contacts. This means all anonymous registrations will result in a new contact.");
990 }
991 else {
992 $cantDedupe = ts("The selected profiles do not contain the fields necessary to match additional participants with existing contacts. This means all additional participants will result in a new contact.");
993 }
994 break;
995 case 1:
996 if (!$cantDedupe) {
997 $dedupeTitle = 'Duplicate Contacts Possible';
998 $cantDedupe = ts("The selected profiles can collect enough information to match additional participants with existing contacts, but not all of the relevant fields are required. This may result in duplicate contacts.");
999 }
1000 }
1001 }
1002 if ($cantDedupe) {
1003 CRM_Core_Session::setStatus($cantDedupe, $dedupeTitle, 'alert dedupenotify', array('expires' => 0));
1004 }
1005
5d92a7e7
CW
1006 // Update tab "disabled" css class
1007 $this->ajaxResponse['tabValid'] = !empty($params['is_online_registration']);
1008
6a488035
TO
1009 parent::endPostProcess();
1010 }
6a488035
TO
1011
1012 /**
1013 * Return a descriptive name for the page, used in wizard header
1014 *
1015 * @return string
1016 * @access public
1017 */
1018 public function getTitle() {
1019 return ts('Online Registration');
1020 }
1021}
1022