2ed9b2362e97a98ae0dc0e0b00a5a0bd5dd48ed1
[civicrm-core.git] / CRM / Core / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 * This is our base form. It is part of the Form/Controller/StateMachine
30 * trifecta. Each form is associated with a specific state in the state
31 * machine. Each form can also operate in various modes
32 *
33 * @package CRM
34 * @copyright CiviCRM LLC (c) 2004-2019
35 */
36
37 require_once 'HTML/QuickForm/Page.php';
38
39 /**
40 * Class CRM_Core_Form
41 */
42 class CRM_Core_Form extends HTML_QuickForm_Page {
43
44 /**
45 * The state object that this form belongs to
46 * @var object
47 */
48 protected $_state;
49
50 /**
51 * The name of this form
52 * @var string
53 */
54 protected $_name;
55
56 /**
57 * The title of this form
58 * @var string
59 */
60 protected $_title = NULL;
61
62 /**
63 * The default values for the form.
64 *
65 * @var array
66 */
67 public $_defaults = [];
68
69 /**
70 * (QUASI-PROTECTED) The options passed into this form
71 *
72 * This field should marked `protected` and is not generally
73 * intended for external callers, but some edge-cases do use it.
74 *
75 * @var mixed
76 */
77 public $_options = NULL;
78
79 /**
80 * (QUASI-PROTECTED) The mode of operation for this form
81 *
82 * This field should marked `protected` and is not generally
83 * intended for external callers, but some edge-cases do use it.
84 *
85 * @var int
86 */
87 public $_action;
88
89 /**
90 * Available payment processors.
91 *
92 * As part of trying to consolidate various payment pages we store processors here & have functions
93 * at this level to manage them.
94 *
95 * @var array
96 * An array of payment processor details with objects loaded in the 'object' field.
97 */
98 protected $_paymentProcessors;
99
100 /**
101 * Available payment processors (IDS).
102 *
103 * As part of trying to consolidate various payment pages we store processors here & have functions
104 * at this level to manage them. An alternative would be to have a separate Form that is inherited
105 * by all forms that allow payment processing.
106 *
107 * @var array
108 * An array of the IDS available on this form.
109 */
110 public $_paymentProcessorIDs;
111
112 /**
113 * Default or selected processor id.
114 *
115 * As part of trying to consolidate various payment pages we store processors here & have functions
116 * at this level to manage them. An alternative would be to have a separate Form that is inherited
117 * by all forms that allow payment processing.
118 *
119 * @var int
120 */
121 protected $_paymentProcessorID;
122
123 /**
124 * Is pay later enabled for the form.
125 *
126 * As part of trying to consolidate various payment pages we store processors here & have functions
127 * at this level to manage them. An alternative would be to have a separate Form that is inherited
128 * by all forms that allow payment processing.
129 *
130 * @var int
131 */
132 protected $_is_pay_later_enabled;
133
134 /**
135 * The renderer used for this form
136 *
137 * @var object
138 */
139 protected $_renderer;
140
141 /**
142 * An array to hold a list of datefields on the form
143 * so that they can be converted to ISO in a consistent manner
144 *
145 * @var array
146 *
147 * e.g on a form declare $_dateFields = array(
148 * 'receive_date' => array('default' => 'now'),
149 * );
150 * then in postProcess call $this->convertDateFieldsToMySQL($formValues)
151 * to have the time field re-incorporated into the field & 'now' set if
152 * no value has been passed in
153 */
154 protected $_dateFields = [];
155
156 /**
157 * Cache the smarty template for efficiency reasons
158 *
159 * @var CRM_Core_Smarty
160 */
161 static protected $_template;
162
163 /**
164 * Indicate if this form should warn users of unsaved changes
165 * @var bool
166 */
167 protected $unsavedChangesWarn;
168
169 /**
170 * What to return to the client if in ajax mode (snippet=json)
171 *
172 * @var array
173 */
174 public $ajaxResponse = [];
175
176 /**
177 * Url path used to reach this page
178 *
179 * @var array
180 */
181 public $urlPath = [];
182
183 /**
184 * Context of the form being loaded.
185 *
186 * 'event' or null
187 *
188 * @var string
189 */
190 protected $context;
191
192 /**
193 * @return string
194 */
195 public function getContext() {
196 return $this->context;
197 }
198
199 /**
200 * Set context variable.
201 */
202 public function setContext() {
203 $this->context = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this);
204 }
205
206 /**
207 * @var CRM_Core_Controller
208 */
209 public $controller;
210
211 /**
212 * Constants for attributes for various form elements
213 * attempt to standardize on the number of variations that we
214 * use of the below form elements
215 *
216 * @var const string
217 */
218 const ATTR_SPACING = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
219
220 /**
221 * All checkboxes are defined with a common prefix. This allows us to
222 * have the same javascript to check / clear all the checkboxes etc
223 * If u have multiple groups of checkboxes, you will need to give them different
224 * ids to avoid potential name collision
225 *
226 * @var string|int
227 */
228 const CB_PREFIX = 'mark_x_', CB_PREFIY = 'mark_y_', CB_PREFIZ = 'mark_z_', CB_PREFIX_LEN = 7;
229
230 /**
231 * @var array
232 * @internal to keep track of chain-select fields
233 */
234 private $_chainSelectFields = [];
235
236 /**
237 * Extra input types we support via the "add" method
238 * @var array
239 */
240 public static $html5Types = [
241 'number',
242 'url',
243 'email',
244 'color',
245 ];
246
247 /**
248 * Constructor for the basic form page.
249 *
250 * We should not use QuickForm directly. This class provides a lot
251 * of default convenient functions, rules and buttons
252 *
253 * @param object $state
254 * State associated with this form.
255 * @param \const|\enum|int $action The mode the form is operating in (None/Create/View/Update/Delete)
256 * @param string $method
257 * The type of http method used (GET/POST).
258 * @param string $name
259 * The name of the form if different from class name.
260 *
261 * @return \CRM_Core_Form
262 */
263 public function __construct(
264 $state = NULL,
265 $action = CRM_Core_Action::NONE,
266 $method = 'post',
267 $name = NULL
268 ) {
269
270 if ($name) {
271 $this->_name = $name;
272 }
273 else {
274 // CRM-15153 - FIXME this name translates to a DOM id and is not always unique!
275 $this->_name = CRM_Utils_String::getClassName(CRM_Utils_System::getClassName($this));
276 }
277
278 parent::__construct($this->_name, $method);
279
280 $this->_state =& $state;
281 if ($this->_state) {
282 $this->_state->setName($this->_name);
283 }
284 $this->_action = (int) $action;
285
286 $this->registerRules();
287
288 // let the constructor initialize this, should happen only once
289 if (!isset(self::$_template)) {
290 self::$_template = CRM_Core_Smarty::singleton();
291 }
292 // Workaround for CRM-15153 - give each form a reasonably unique css class
293 $this->addClass(CRM_Utils_System::getClassName($this));
294
295 $this->assign('snippet', CRM_Utils_Array::value('snippet', $_GET));
296 $this->setTranslatedFields();
297 }
298
299 /**
300 * Set translated fields.
301 *
302 * This function is called from the class constructor, allowing us to set
303 * fields on the class that can't be set as properties due to need for
304 * translation or other non-input specific handling.
305 */
306 protected function setTranslatedFields() {}
307
308 /**
309 * Add one or more css classes to the form.
310 *
311 * @param string $className
312 */
313 public function addClass($className) {
314 $classes = $this->getAttribute('class');
315 $this->setAttribute('class', ($classes ? "$classes " : '') . $className);
316 }
317
318 /**
319 * Register all the standard rules that most forms potentially use.
320 */
321 public function registerRules() {
322 static $rules = [
323 'title',
324 'longTitle',
325 'variable',
326 'qfVariable',
327 'phone',
328 'integer',
329 'query',
330 'url',
331 'wikiURL',
332 'domain',
333 'numberOfDigit',
334 'date',
335 'currentDate',
336 'asciiFile',
337 'htmlFile',
338 'utf8File',
339 'objectExists',
340 'optionExists',
341 'postalCode',
342 'money',
343 'positiveInteger',
344 'xssString',
345 'fileExists',
346 'settingPath',
347 'autocomplete',
348 'validContact',
349 ];
350
351 foreach ($rules as $rule) {
352 $this->registerRule($rule, 'callback', $rule, 'CRM_Utils_Rule');
353 }
354 }
355
356 /**
357 * Simple easy to use wrapper around addElement.
358 *
359 * Deal with simple validation rules.
360 *
361 * @param string $type
362 * @param string $name
363 * @param string $label
364 * @param string|array $attributes (options for select elements)
365 * @param bool $required
366 * @param array $extra
367 * (attributes for select elements).
368 * For datepicker elements this is consistent with the data
369 * from CRM_Utils_Date::getDatePickerExtra
370 *
371 * @return HTML_QuickForm_Element
372 * Could be an error object
373 */
374 public function &add(
375 $type, $name, $label = '',
376 $attributes = '', $required = FALSE, $extra = NULL
377 ) {
378 // Fudge some extra types that quickform doesn't support
379 $inputType = $type;
380 if ($type == 'wysiwyg' || in_array($type, self::$html5Types)) {
381 $attributes = ($attributes ? $attributes : []) + ['class' => ''];
382 $attributes['class'] = ltrim($attributes['class'] . " crm-form-$type");
383 if ($type == 'wysiwyg' && isset($attributes['preset'])) {
384 $attributes['data-preset'] = $attributes['preset'];
385 unset($attributes['preset']);
386 }
387 $type = $type == 'wysiwyg' ? 'textarea' : 'text';
388 }
389 // Like select but accepts rich array data (with nesting, colors, icons, etc) as option list.
390 if ($inputType == 'select2') {
391 $type = 'text';
392 $options = $attributes;
393 $attributes = ($extra ? $extra : []) + ['class' => ''];
394 $attributes['class'] = ltrim($attributes['class'] . " crm-select2 crm-form-select2");
395 $attributes['data-select-params'] = json_encode(['data' => $options, 'multiple' => !empty($attributes['multiple'])]);
396 unset($attributes['multiple']);
397 $extra = NULL;
398 }
399 // @see http://wiki.civicrm.org/confluence/display/CRMDOC/crmDatepicker
400 if ($type == 'datepicker') {
401 $attributes = ($attributes ? $attributes : []);
402 $attributes['data-crm-datepicker'] = json_encode((array) $extra);
403 if (!empty($attributes['aria-label']) || $label) {
404 $attributes['aria-label'] = CRM_Utils_Array::value('aria-label', $attributes, $label);
405 }
406 $type = "text";
407 }
408 if ($type == 'select' && is_array($extra)) {
409 // Normalize this property
410 if (!empty($extra['multiple'])) {
411 $extra['multiple'] = 'multiple';
412 }
413 else {
414 unset($extra['multiple']);
415 }
416 unset($extra['size'], $extra['maxlength']);
417 // Add placeholder option for select
418 if (isset($extra['placeholder'])) {
419 if ($extra['placeholder'] === TRUE) {
420 $extra['placeholder'] = $required ? ts('- select -') : ts('- none -');
421 }
422 if (($extra['placeholder'] || $extra['placeholder'] === '') && empty($extra['multiple']) && is_array($attributes) && !isset($attributes[''])) {
423 $attributes = ['' => $extra['placeholder']] + $attributes;
424 }
425 }
426 }
427 $element = $this->addElement($type, $name, $label, $attributes, $extra);
428 if (HTML_QuickForm::isError($element)) {
429 CRM_Core_Error::fatal(HTML_QuickForm::errorMessage($element));
430 }
431
432 if ($inputType == 'color') {
433 $this->addRule($name, ts('%1 must contain a color value e.g. #ffffff.', [1 => $label]), 'regex', '/#[0-9a-fA-F]{6}/');
434 }
435
436 if ($required) {
437 if ($type == 'file') {
438 $error = $this->addRule($name, ts('%1 is a required field.', [1 => $label]), 'uploadedfile');
439 }
440 else {
441 $error = $this->addRule($name, ts('%1 is a required field.', [1 => $label]), 'required');
442 }
443 if (HTML_QuickForm::isError($error)) {
444 CRM_Core_Error::fatal(HTML_QuickForm::errorMessage($element));
445 }
446 }
447
448 // Add context for the editing of option groups
449 if (isset($extra['option_context'])) {
450 $context = json_encode($extra['option_context']);
451 $element->setAttribute('data-option-edit-context', $context);
452 }
453
454 return $element;
455 }
456
457 /**
458 * Preprocess form.
459 *
460 * This is called before buildForm. Any pre-processing that
461 * needs to be done for buildForm should be done here.
462 *
463 * This is a virtual function and should be redefined if needed.
464 */
465 public function preProcess() {
466 }
467
468 /**
469 * Called after the form is validated.
470 *
471 * Any processing of form state etc should be done in this function.
472 * Typically all processing associated with a form should be done
473 * here and relevant state should be stored in the session
474 *
475 * This is a virtual function and should be redefined if needed
476 */
477 public function postProcess() {
478 }
479
480 /**
481 * Main process wrapper.
482 *
483 * Implemented so that we can call all the hook functions.
484 *
485 * @param bool $allowAjax
486 * FIXME: This feels kind of hackish, ideally we would take the json-related code from this function.
487 * and bury it deeper down in the controller
488 */
489 public function mainProcess($allowAjax = TRUE) {
490 $this->postProcess();
491 $this->postProcessHook();
492
493 // Respond with JSON if in AJAX context (also support legacy value '6')
494 if ($allowAjax && !empty($_REQUEST['snippet']) && in_array($_REQUEST['snippet'], [
495 CRM_Core_Smarty::PRINT_JSON,
496 6,
497 ])) {
498 $this->ajaxResponse['buttonName'] = str_replace('_qf_' . $this->getAttribute('id') . '_', '', $this->controller->getButtonName());
499 $this->ajaxResponse['action'] = $this->_action;
500 if (isset($this->_id) || isset($this->id)) {
501 $this->ajaxResponse['id'] = isset($this->id) ? $this->id : $this->_id;
502 }
503 CRM_Core_Page_AJAX::returnJsonResponse($this->ajaxResponse);
504 }
505 }
506
507 /**
508 * The postProcess hook is typically called by the framework.
509 *
510 * However in a few cases, the form exits or redirects early in which
511 * case it needs to call this function so other modules can do the needful
512 * Calling this function directly should be avoided if possible. In general a
513 * better way is to do setUserContext so the framework does the redirect
514 */
515 public function postProcessHook() {
516 CRM_Utils_Hook::postProcess(get_class($this), $this);
517 }
518
519 /**
520 * This virtual function is used to build the form.
521 *
522 * It replaces the buildForm associated with QuickForm_Page. This allows us to put
523 * preProcess in front of the actual form building routine
524 */
525 public function buildQuickForm() {
526 }
527
528 /**
529 * This virtual function is used to set the default values of various form elements.
530 *
531 * @return array|NULL
532 * reference to the array of default values
533 */
534 public function setDefaultValues() {
535 return NULL;
536 }
537
538 /**
539 * This is a virtual function that adds group and global rules to the form.
540 *
541 * Keeping it distinct from the form to keep code small
542 * and localized in the form building code
543 */
544 public function addRules() {
545 }
546
547 /**
548 * Performs the server side validation.
549 * @since 1.0
550 * @return bool
551 * true if no error found
552 * @throws HTML_QuickForm_Error
553 */
554 public function validate() {
555 $error = parent::validate();
556
557 $this->validateChainSelectFields();
558
559 $hookErrors = [];
560
561 CRM_Utils_Hook::validateForm(
562 get_class($this),
563 $this->_submitValues,
564 $this->_submitFiles,
565 $this,
566 $hookErrors
567 );
568
569 if (!empty($hookErrors)) {
570 $this->_errors += $hookErrors;
571 }
572
573 return (0 == count($this->_errors));
574 }
575
576 /**
577 * Core function that builds the form.
578 *
579 * We redefine this function here and expect all CRM forms to build their form in the function
580 * buildQuickForm.
581 */
582 public function buildForm() {
583 $this->_formBuilt = TRUE;
584
585 $this->preProcess();
586
587 CRM_Utils_Hook::preProcess(get_class($this), $this);
588
589 $this->assign('translatePermission', CRM_Core_Permission::check('translate CiviCRM'));
590
591 if (
592 $this->controller->_key &&
593 $this->controller->_generateQFKey
594 ) {
595 $this->addElement('hidden', 'qfKey', $this->controller->_key);
596 $this->assign('qfKey', $this->controller->_key);
597
598 }
599
600 // _generateQFKey suppresses the qfKey generation on form snippets that
601 // are part of other forms, hence we use that to avoid adding entryURL
602 if ($this->controller->_generateQFKey && $this->controller->_entryURL) {
603 $this->addElement('hidden', 'entryURL', $this->controller->_entryURL);
604 }
605
606 $this->buildQuickForm();
607
608 $defaults = $this->setDefaultValues();
609 unset($defaults['qfKey']);
610
611 if (!empty($defaults)) {
612 $this->setDefaults($defaults);
613 }
614
615 // call the form hook
616 // also call the hook function so any modules can set their own custom defaults
617 // the user can do both the form and set default values with this hook
618 CRM_Utils_Hook::buildForm(get_class($this), $this);
619
620 $this->addRules();
621
622 //Set html data-attribute to enable warning user of unsaved changes
623 if ($this->unsavedChangesWarn === TRUE
624 || (!isset($this->unsavedChangesWarn)
625 && ($this->_action & CRM_Core_Action::ADD || $this->_action & CRM_Core_Action::UPDATE)
626 )
627 ) {
628 $this->setAttribute('data-warn-changes', 'true');
629 }
630 }
631
632 /**
633 * Add default Next / Back buttons.
634 *
635 * @param array $params
636 * Array of associative arrays in the order in which the buttons should be
637 * displayed. The associate array has 3 fields: 'type', 'name' and 'isDefault'
638 * The base form class will define a bunch of static arrays for commonly used
639 * formats.
640 */
641 public function addButtons($params) {
642 $prevnext = $spacing = [];
643 foreach ($params as $button) {
644 if (!empty($button['submitOnce'])) {
645 $button['js']['onclick'] = "return submitOnce(this,'{$this->_name}','" . ts('Processing') . "');";
646 }
647
648 $attrs = ['class' => 'crm-form-submit'] + (array) CRM_Utils_Array::value('js', $button);
649
650 if (!empty($button['class'])) {
651 $attrs['class'] .= ' ' . $button['class'];
652 }
653
654 if (!empty($button['isDefault'])) {
655 $attrs['class'] .= ' default';
656 }
657
658 if (in_array($button['type'], ['upload', 'next', 'submit', 'done', 'process', 'refresh'])) {
659 $attrs['class'] .= ' validate';
660 $defaultIcon = 'fa-check';
661 }
662 else {
663 $attrs['class'] .= ' cancel';
664 $defaultIcon = $button['type'] == 'back' ? 'fa-chevron-left' : 'fa-times';
665 }
666
667 if ($button['type'] === 'reset') {
668 $prevnext[] = $this->createElement($button['type'], 'reset', $button['name'], $attrs);
669 }
670 else {
671 if (!empty($button['subName'])) {
672 if ($button['subName'] == 'new') {
673 $defaultIcon = 'fa-plus-circle';
674 }
675 if ($button['subName'] == 'done') {
676 $defaultIcon = 'fa-check-circle';
677 }
678 if ($button['subName'] == 'next') {
679 $defaultIcon = 'fa-chevron-right';
680 }
681 }
682
683 if (in_array($button['type'], ['next', 'upload', 'done']) && $button['name'] === ts('Save')) {
684 $attrs['accesskey'] = 'S';
685 }
686 $icon = CRM_Utils_Array::value('icon', $button, $defaultIcon);
687 if ($icon) {
688 $attrs['crm-icon'] = $icon;
689 }
690 $buttonName = $this->getButtonName($button['type'], CRM_Utils_Array::value('subName', $button));
691 $prevnext[] = $this->createElement('submit', $buttonName, $button['name'], $attrs);
692 }
693 if (!empty($button['isDefault'])) {
694 $this->setDefaultAction($button['type']);
695 }
696
697 // if button type is upload, set the enctype
698 if ($button['type'] == 'upload') {
699 $this->updateAttributes(['enctype' => 'multipart/form-data']);
700 $this->setMaxFileSize();
701 }
702
703 // hack - addGroup uses an array to express variable spacing, read from the last element
704 $spacing[] = CRM_Utils_Array::value('spacing', $button, self::ATTR_SPACING);
705 }
706 $this->addGroup($prevnext, 'buttons', '', $spacing, FALSE);
707 }
708
709 /**
710 * Getter function for Name.
711 *
712 * @return string
713 */
714 public function getName() {
715 return $this->_name;
716 }
717
718 /**
719 * Getter function for State.
720 *
721 * @return object
722 */
723 public function &getState() {
724 return $this->_state;
725 }
726
727 /**
728 * Getter function for StateType.
729 *
730 * @return int
731 */
732 public function getStateType() {
733 return $this->_state->getType();
734 }
735
736 /**
737 * Getter function for title.
738 *
739 * Should be over-ridden by derived class.
740 *
741 * @return string
742 */
743 public function getTitle() {
744 return $this->_title ? $this->_title : ts('ERROR: Title is not Set');
745 }
746
747 /**
748 * Setter function for title.
749 *
750 * @param string $title
751 * The title of the form.
752 */
753 public function setTitle($title) {
754 $this->_title = $title;
755 CRM_Utils_System::setTitle($title);
756 }
757
758 /**
759 * Assign billing type id to bltID.
760 *
761 * @throws CRM_Core_Exception
762 */
763 public function assignBillingType() {
764 $this->_bltID = CRM_Core_BAO_LocationType::getBilling();
765 $this->set('bltID', $this->_bltID);
766 $this->assign('bltID', $this->_bltID);
767 }
768
769 /**
770 * @return int
771 */
772 public function getPaymentProcessorID() {
773 return $this->_paymentProcessorID;
774 }
775
776 /**
777 * This if a front end form function for setting the payment processor.
778 *
779 * It would be good to sync it with the back-end function on abstractEditPayment & use one everywhere.
780 *
781 * @param bool $isPayLaterEnabled
782 *
783 * @throws \CRM_Core_Exception
784 */
785 protected function assignPaymentProcessor($isPayLaterEnabled) {
786 $this->_paymentProcessors = CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors(
787 [ucfirst($this->_mode) . 'Mode'],
788 $this->_paymentProcessorIDs
789 );
790 if ($isPayLaterEnabled) {
791 $this->_paymentProcessors[0] = CRM_Financial_BAO_PaymentProcessor::getPayment(0);
792 }
793
794 if (!empty($this->_paymentProcessors)) {
795 foreach ($this->_paymentProcessors as $paymentProcessorID => $paymentProcessorDetail) {
796 if (empty($this->_paymentProcessor) && $paymentProcessorDetail['is_default'] == 1 || (count($this->_paymentProcessors) == 1)
797 ) {
798 $this->_paymentProcessor = $paymentProcessorDetail;
799 $this->assign('paymentProcessor', $this->_paymentProcessor);
800 // Setting this is a bit of a legacy overhang.
801 $this->_paymentObject = $paymentProcessorDetail['object'];
802 }
803 }
804 // It's not clear why we set this on the form.
805 $this->set('paymentProcessors', $this->_paymentProcessors);
806 }
807 else {
808 throw new CRM_Core_Exception(ts('A payment processor configured for this page might be disabled (contact the site administrator for assistance).'));
809 }
810
811 }
812
813 /**
814 * Format the fields for the payment processor.
815 *
816 * In order to pass fields to the payment processor in a consistent way we add some renamed
817 * parameters.
818 *
819 * @param array $fields
820 *
821 * @return array
822 */
823 protected function formatParamsForPaymentProcessor($fields) {
824 // also add location name to the array
825 $this->_params["address_name-{$this->_bltID}"] = CRM_Utils_Array::value('billing_first_name', $this->_params) . ' ' . CRM_Utils_Array::value('billing_middle_name', $this->_params) . ' ' . CRM_Utils_Array::value('billing_last_name', $this->_params);
826 $this->_params["address_name-{$this->_bltID}"] = trim($this->_params["address_name-{$this->_bltID}"]);
827 // Add additional parameters that the payment processors are used to receiving.
828 if (!empty($this->_params["billing_state_province_id-{$this->_bltID}"])) {
829 $this->_params['state_province'] = $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}"]);
830 }
831 if (!empty($this->_params["billing_country_id-{$this->_bltID}"])) {
832 $this->_params['country'] = $this->_params["country-{$this->_bltID}"] = $this->_params["billing_country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($this->_params["billing_country_id-{$this->_bltID}"]);
833 }
834
835 list($hasAddressField, $addressParams) = CRM_Contribute_BAO_Contribution::getPaymentProcessorReadyAddressParams($this->_params, $this->_bltID);
836 if ($hasAddressField) {
837 $this->_params = array_merge($this->_params, $addressParams);
838 }
839
840 $nameFields = ['first_name', 'middle_name', 'last_name'];
841 foreach ($nameFields as $name) {
842 $fields[$name] = 1;
843 if (array_key_exists("billing_$name", $this->_params)) {
844 $this->_params[$name] = $this->_params["billing_{$name}"];
845 $this->_params['preserveDBName'] = TRUE;
846 }
847 }
848 return $fields;
849 }
850
851 /**
852 * Handle Payment Processor switching for contribution and event registration forms.
853 *
854 * This function is shared between contribution & event forms & this is their common class.
855 *
856 * However, this should be seen as an in-progress refactor, the end goal being to also align the
857 * backoffice forms that action payments.
858 *
859 * This function overlaps assignPaymentProcessor, in a bad way.
860 */
861 protected function preProcessPaymentOptions() {
862 $this->_paymentProcessorID = NULL;
863 if ($this->_paymentProcessors) {
864 if (!empty($this->_submitValues)) {
865 $this->_paymentProcessorID = CRM_Utils_Array::value('payment_processor_id', $this->_submitValues);
866 $this->_paymentProcessor = CRM_Utils_Array::value($this->_paymentProcessorID, $this->_paymentProcessors);
867 $this->set('type', $this->_paymentProcessorID);
868 $this->set('mode', $this->_mode);
869 $this->set('paymentProcessor', $this->_paymentProcessor);
870 }
871 // Set default payment processor
872 else {
873 foreach ($this->_paymentProcessors as $values) {
874 if (!empty($values['is_default']) || count($this->_paymentProcessors) == 1) {
875 $this->_paymentProcessorID = $values['id'];
876 break;
877 }
878 }
879 }
880 if ($this->_paymentProcessorID
881 || (isset($this->_submitValues['payment_processor_id']) && $this->_submitValues['payment_processor_id'] == 0)
882 ) {
883 CRM_Core_Payment_ProcessorForm::preProcess($this);
884 }
885 else {
886 $this->_paymentProcessor = [];
887 }
888 }
889
890 // We save the fact that the profile 'billing' is required on the payment form.
891 // Currently pay-later is the only 'processor' that takes notice of this - but ideally
892 // 1) it would be possible to select the minimum_billing_profile_id for the contribution form
893 // 2) that profile_id would be set on the payment processor
894 // 3) the payment processor would return a billing form that combines these user-configured
895 // minimums with the payment processor minimums. This would lead to fields like 'postal_code'
896 // only being on the form if either the admin has configured it as wanted or the processor
897 // requires it.
898 $this->assign('billing_profile_id', (CRM_Utils_Array::value('is_billing_required', $this->_values) ? 'billing' : ''));
899 }
900
901 /**
902 * Handle pre approval for processors.
903 *
904 * This fits with the flow where a pre-approval is done and then confirmed in the next stage when confirm is hit.
905 *
906 * This function is shared between contribution & event forms & this is their common class.
907 *
908 * However, this should be seen as an in-progress refactor, the end goal being to also align the
909 * backoffice forms that action payments.
910 *
911 * @param array $params
912 */
913 protected function handlePreApproval(&$params) {
914 try {
915 $payment = Civi\Payment\System::singleton()->getByProcessor($this->_paymentProcessor);
916 $params['component'] = 'contribute';
917 $result = $payment->doPreApproval($params);
918 if (empty($result)) {
919 // This could happen, for example, when paypal looks at the button value & decides it is not paypal express.
920 return;
921 }
922 }
923 catch (\Civi\Payment\Exception\PaymentProcessorException $e) {
924 CRM_Core_Error::statusBounce(ts('Payment approval failed with message :') . $e->getMessage(), $payment->getCancelUrl($params['qfKey'], CRM_Utils_Array::value('participant_id', $params)));
925 }
926
927 $this->set('pre_approval_parameters', $result['pre_approval_parameters']);
928 if (!empty($result['redirect_url'])) {
929 CRM_Utils_System::redirect($result['redirect_url']);
930 }
931 }
932
933 /**
934 * Setter function for options.
935 *
936 * @param mixed $options
937 */
938 public function setOptions($options) {
939 $this->_options = $options;
940 }
941
942 /**
943 * Render form and return contents.
944 *
945 * @return string
946 */
947 public function toSmarty() {
948 $this->preProcessChainSelectFields();
949 $renderer = $this->getRenderer();
950 $this->accept($renderer);
951 $content = $renderer->toArray();
952 $content['formName'] = $this->getName();
953 // CRM-15153
954 $content['formClass'] = CRM_Utils_System::getClassName($this);
955 return $content;
956 }
957
958 /**
959 * Getter function for renderer.
960 *
961 * If renderer is not set create one and initialize it.
962 *
963 * @return object
964 */
965 public function &getRenderer() {
966 if (!isset($this->_renderer)) {
967 $this->_renderer = CRM_Core_Form_Renderer::singleton();
968 }
969 return $this->_renderer;
970 }
971
972 /**
973 * Use the form name to create the tpl file name.
974 *
975 * @return string
976 */
977 public function getTemplateFileName() {
978 $ext = CRM_Extension_System::singleton()->getMapper();
979 if ($ext->isExtensionClass(CRM_Utils_System::getClassName($this))) {
980 $filename = $ext->getTemplateName(CRM_Utils_System::getClassName($this));
981 $tplname = $ext->getTemplatePath(CRM_Utils_System::getClassName($this)) . DIRECTORY_SEPARATOR . $filename;
982 }
983 else {
984 $tplname = strtr(
985 CRM_Utils_System::getClassName($this),
986 [
987 '_' => DIRECTORY_SEPARATOR,
988 '\\' => DIRECTORY_SEPARATOR,
989 ]
990 ) . '.tpl';
991 }
992 return $tplname;
993 }
994
995 /**
996 * A wrapper for getTemplateFileName.
997 *
998 * This includes calling the hook to prevent us from having to copy & paste the logic of calling the hook.
999 */
1000 public function getHookedTemplateFileName() {
1001 $pageTemplateFile = $this->getTemplateFileName();
1002 CRM_Utils_Hook::alterTemplateFile(get_class($this), $this, 'page', $pageTemplateFile);
1003 return $pageTemplateFile;
1004 }
1005
1006 /**
1007 * Default extra tpl file basically just replaces .tpl with .extra.tpl.
1008 *
1009 * i.e. we do not override.
1010 *
1011 * @return string
1012 */
1013 public function overrideExtraTemplateFileName() {
1014 return NULL;
1015 }
1016
1017 /**
1018 * Error reporting mechanism.
1019 *
1020 * @param string $message
1021 * Error Message.
1022 * @param int $code
1023 * Error Code.
1024 * @param CRM_Core_DAO $dao
1025 * A data access object on which we perform a rollback if non - empty.
1026 */
1027 public function error($message, $code = NULL, $dao = NULL) {
1028 if ($dao) {
1029 $dao->query('ROLLBACK');
1030 }
1031
1032 $error = CRM_Core_Error::singleton();
1033
1034 $error->push($code, $message);
1035 }
1036
1037 /**
1038 * Store the variable with the value in the form scope.
1039 *
1040 * @param string $name
1041 * Name of the variable.
1042 * @param mixed $value
1043 * Value of the variable.
1044 */
1045 public function set($name, $value) {
1046 $this->controller->set($name, $value);
1047 }
1048
1049 /**
1050 * Get the variable from the form scope.
1051 *
1052 * @param string $name
1053 * Name of the variable
1054 *
1055 * @return mixed
1056 */
1057 public function get($name) {
1058 return $this->controller->get($name);
1059 }
1060
1061 /**
1062 * Getter for action.
1063 *
1064 * @return int
1065 */
1066 public function getAction() {
1067 return $this->_action;
1068 }
1069
1070 /**
1071 * Setter for action.
1072 *
1073 * @param int $action
1074 * The mode we want to set the form.
1075 */
1076 public function setAction($action) {
1077 $this->_action = $action;
1078 }
1079
1080 /**
1081 * Assign value to name in template.
1082 *
1083 * @param string $var
1084 * Name of variable.
1085 * @param mixed $value
1086 * Value of variable.
1087 */
1088 public function assign($var, $value = NULL) {
1089 self::$_template->assign($var, $value);
1090 }
1091
1092 /**
1093 * Assign value to name in template by reference.
1094 *
1095 * @param string $var
1096 * Name of variable.
1097 * @param mixed $value
1098 * Value of variable.
1099 */
1100 public function assign_by_ref($var, &$value) {
1101 self::$_template->assign_by_ref($var, $value);
1102 }
1103
1104 /**
1105 * Appends values to template variables.
1106 *
1107 * @param array|string $tpl_var the template variable name(s)
1108 * @param mixed $value
1109 * The value to append.
1110 * @param bool $merge
1111 */
1112 public function append($tpl_var, $value = NULL, $merge = FALSE) {
1113 self::$_template->append($tpl_var, $value, $merge);
1114 }
1115
1116 /**
1117 * Returns an array containing template variables.
1118 *
1119 * @param string $name
1120 *
1121 * @return array
1122 */
1123 public function get_template_vars($name = NULL) {
1124 return self::$_template->get_template_vars($name);
1125 }
1126
1127 /**
1128 * @param string $name
1129 * @param $title
1130 * @param $values
1131 * @param array $attributes
1132 * @param null $separator
1133 * @param bool $required
1134 *
1135 * @return HTML_QuickForm_group
1136 */
1137 public function &addRadio($name, $title, $values, $attributes = [], $separator = NULL, $required = FALSE) {
1138 $options = [];
1139 $attributes = $attributes ? $attributes : [];
1140 $allowClear = !empty($attributes['allowClear']);
1141 unset($attributes['allowClear']);
1142 $attributes['id_suffix'] = $name;
1143 foreach ($values as $key => $var) {
1144 $options[] = $this->createElement('radio', NULL, NULL, $var, $key, $attributes);
1145 }
1146 $group = $this->addGroup($options, $name, $title, $separator);
1147
1148 $optionEditKey = 'data-option-edit-path';
1149 if (!empty($attributes[$optionEditKey])) {
1150 $group->setAttribute($optionEditKey, $attributes[$optionEditKey]);
1151 }
1152
1153 if ($required) {
1154 $this->addRule($name, ts('%1 is a required field.', [1 => $title]), 'required');
1155 }
1156 if ($allowClear) {
1157 $group->setAttribute('allowClear', TRUE);
1158 }
1159 return $group;
1160 }
1161
1162 /**
1163 * @param int $id
1164 * @param $title
1165 * @param bool $allowClear
1166 * @param null $required
1167 * @param array $attributes
1168 */
1169 public function addYesNo($id, $title, $allowClear = FALSE, $required = NULL, $attributes = []) {
1170 $attributes += ['id_suffix' => $id];
1171 $choice = [];
1172 $choice[] = $this->createElement('radio', NULL, '11', ts('Yes'), '1', $attributes);
1173 $choice[] = $this->createElement('radio', NULL, '11', ts('No'), '0', $attributes);
1174
1175 $group = $this->addGroup($choice, $id, $title);
1176 if ($allowClear) {
1177 $group->setAttribute('allowClear', TRUE);
1178 }
1179 if ($required) {
1180 $this->addRule($id, ts('%1 is a required field.', [1 => $title]), 'required');
1181 }
1182 }
1183
1184 /**
1185 * @param int $id
1186 * @param $title
1187 * @param $values
1188 * @param null $other
1189 * @param null $attributes
1190 * @param null $required
1191 * @param null $javascriptMethod
1192 * @param string $separator
1193 * @param bool $flipValues
1194 */
1195 public function addCheckBox(
1196 $id, $title, $values, $other = NULL,
1197 $attributes = NULL, $required = NULL,
1198 $javascriptMethod = NULL,
1199 $separator = '<br />', $flipValues = FALSE
1200 ) {
1201 $options = [];
1202
1203 if ($javascriptMethod) {
1204 foreach ($values as $key => $var) {
1205 if (!$flipValues) {
1206 $options[] = $this->createElement('checkbox', $var, NULL, $key, $javascriptMethod, $attributes);
1207 }
1208 else {
1209 $options[] = $this->createElement('checkbox', $key, NULL, $var, $javascriptMethod, $attributes);
1210 }
1211 }
1212 }
1213 else {
1214 foreach ($values as $key => $var) {
1215 if (!$flipValues) {
1216 $options[] = $this->createElement('checkbox', $var, NULL, $key, $attributes);
1217 }
1218 else {
1219 $options[] = $this->createElement('checkbox', $key, NULL, $var, $attributes);
1220 }
1221 }
1222 }
1223
1224 $group = $this->addGroup($options, $id, $title, $separator);
1225 $optionEditKey = 'data-option-edit-path';
1226 if (!empty($attributes[$optionEditKey])) {
1227 $group->setAttribute($optionEditKey, $attributes[$optionEditKey]);
1228 }
1229
1230 if ($other) {
1231 $this->addElement('text', $id . '_other', ts('Other'), $attributes[$id . '_other']);
1232 }
1233
1234 if ($required) {
1235 $this->addRule($id,
1236 ts('%1 is a required field.', [1 => $title]),
1237 'required'
1238 );
1239 }
1240 }
1241
1242 public function resetValues() {
1243 $data = $this->controller->container();
1244 $data['values'][$this->_name] = [];
1245 }
1246
1247 /**
1248 * Simple shell that derived classes can call to add buttons to
1249 * the form with a customized title for the main Submit
1250 *
1251 * @param string $title
1252 * Title of the main button.
1253 * @param string $nextType
1254 * Button type for the form after processing.
1255 * @param string $backType
1256 * @param bool|string $submitOnce If true, add javascript to next button submit which prevents it from being clicked more than once
1257 */
1258 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
1259 $buttons = [];
1260 if ($backType != NULL) {
1261 $buttons[] = [
1262 'type' => $backType,
1263 'name' => ts('Previous'),
1264 ];
1265 }
1266 if ($nextType != NULL) {
1267 $nextButton = [
1268 'type' => $nextType,
1269 'name' => $title,
1270 'isDefault' => TRUE,
1271 ];
1272 if ($submitOnce) {
1273 $nextButton['js'] = ['onclick' => "return submitOnce(this,'{$this->_name}','" . ts('Processing') . "');"];
1274 }
1275 $buttons[] = $nextButton;
1276 }
1277 $this->addButtons($buttons);
1278 }
1279
1280 /**
1281 * @param string $name
1282 * @param string $from
1283 * @param string $to
1284 * @param string $label
1285 * @param string $dateFormat
1286 * @param bool $required
1287 * @param bool $displayTime
1288 */
1289 public function addDateRange($name, $from = '_from', $to = '_to', $label = 'From:', $dateFormat = 'searchDate', $required = FALSE, $displayTime = FALSE) {
1290 if ($displayTime) {
1291 $this->addDateTime($name . $from, $label, $required, ['formatType' => $dateFormat]);
1292 $this->addDateTime($name . $to, ts('To:'), $required, ['formatType' => $dateFormat]);
1293 }
1294 else {
1295 $this->addDate($name . $from, $label, $required, ['formatType' => $dateFormat]);
1296 $this->addDate($name . $to, ts('To:'), $required, ['formatType' => $dateFormat]);
1297 }
1298 }
1299
1300 /**
1301 * Add a search for a range using date picker fields.
1302 *
1303 * @param string $fieldName
1304 * @param string $label
1305 * @param bool $isDateTime
1306 * Is this a date-time field (not just date).
1307 * @param bool $required
1308 * @param string $fromLabel
1309 * @param string $toLabel
1310 */
1311 public function addDatePickerRange($fieldName, $label, $isDateTime = FALSE, $required = FALSE, $fromLabel = 'From', $toLabel = 'To') {
1312
1313 $options = [
1314 '' => ts('- any -'),
1315 0 => ts('Choose Date Range'),
1316 ] + CRM_Core_OptionGroup::values('relative_date_filters');
1317
1318 $this->add('select',
1319 "{$fieldName}_relative",
1320 $label,
1321 $options,
1322 $required,
1323 ['class' => 'crm-select2']
1324 );
1325 $attributes = ['format' => 'searchDate'];
1326 $extra = ['time' => $isDateTime];
1327 $this->add('datepicker', $fieldName . '_low', ts($fromLabel), $attributes, $required, $extra);
1328 $this->add('datepicker', $fieldName . '_high', ts($toLabel), $attributes, $required, $extra);
1329 }
1330
1331 /**
1332 * Based on form action, return a string representing the api action.
1333 * Used by addField method.
1334 *
1335 * Return string
1336 */
1337 protected function getApiAction() {
1338 $action = $this->getAction();
1339 if ($action & (CRM_Core_Action::UPDATE + CRM_Core_Action::ADD)) {
1340 return 'create';
1341 }
1342 if ($action & (CRM_Core_Action::VIEW + CRM_Core_Action::BROWSE + CRM_Core_Action::BASIC + CRM_Core_Action::ADVANCED + CRM_Core_Action::PREVIEW)) {
1343 return 'get';
1344 }
1345 if ($action & (CRM_Core_Action::DELETE)) {
1346 return 'delete';
1347 }
1348 // If you get this exception try adding more cases above.
1349 throw new Exception("Cannot determine api action for " . get_class($this) . '.' . 'CRM_Core_Action "' . CRM_Core_Action::description($action) . '" not recognized.');
1350 }
1351
1352 /**
1353 * Classes extending CRM_Core_Form should implement this method.
1354 * @throws Exception
1355 */
1356 public function getDefaultEntity() {
1357 throw new Exception("Cannot determine default entity. " . get_class($this) . " should implement getDefaultEntity().");
1358 }
1359
1360 /**
1361 * Classes extending CRM_Core_Form should implement this method.
1362 *
1363 * TODO: Merge with CRM_Core_DAO::buildOptionsContext($context) and add validation.
1364 * @throws Exception
1365 */
1366 public function getDefaultContext() {
1367 throw new Exception("Cannot determine default context. " . get_class($this) . " should implement getDefaultContext().");
1368 }
1369
1370 /**
1371 * Adds a select based on field metadata.
1372 * TODO: This could be even more generic and widget type (select in this case) could also be read from metadata
1373 * Perhaps a method like $form->bind($name) which would look up all metadata for named field
1374 * @param $name
1375 * Field name to go on the form.
1376 * @param array $props
1377 * Mix of html attributes and special properties, namely.
1378 * - entity (api entity name, can usually be inferred automatically from the form class)
1379 * - field (field name - only needed if different from name used on the form)
1380 * - option_url - path to edit this option list - usually retrieved automatically - set to NULL to disable link
1381 * - placeholder - set to NULL to disable
1382 * - multiple - bool
1383 * - context - @see CRM_Core_DAO::buildOptionsContext
1384 * @param bool $required
1385 * @throws CRM_Core_Exception
1386 * @return HTML_QuickForm_Element
1387 */
1388 public function addSelect($name, $props = [], $required = FALSE) {
1389 if (!isset($props['entity'])) {
1390 $props['entity'] = $this->getDefaultEntity();
1391 }
1392 if (!isset($props['field'])) {
1393 $props['field'] = strrpos($name, '[') ? rtrim(substr($name, 1 + strrpos($name, '[')), ']') : $name;
1394 }
1395 if (!isset($props['context'])) {
1396 try {
1397 $props['context'] = $this->getDefaultContext();
1398 }
1399 // This is not a required param, so we'll ignore if this doesn't exist.
1400 catch (Exception $e) {
1401 }
1402 }
1403 // Fetch options from the api unless passed explicitly
1404 if (isset($props['options'])) {
1405 $options = $props['options'];
1406 }
1407 else {
1408 $info = civicrm_api3($props['entity'], 'getoptions', $props);
1409 $options = $info['values'];
1410 }
1411 if (!array_key_exists('placeholder', $props)) {
1412 $props['placeholder'] = $required ? ts('- select -') : CRM_Utils_Array::value('context', $props) == 'search' ? ts('- any -') : ts('- none -');
1413 }
1414 // Handle custom field
1415 if (strpos($name, 'custom_') === 0 && is_numeric($name[7])) {
1416 list(, $id) = explode('_', $name);
1417 $label = isset($props['label']) ? $props['label'] : CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', 'label', $id);
1418 $gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', 'option_group_id', $id);
1419 if (CRM_Utils_Array::value('context', $props) != 'search') {
1420 $props['data-option-edit-path'] = array_key_exists('option_url', $props) ? $props['option_url'] : 'civicrm/admin/options/' . CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $gid);
1421 }
1422 }
1423 // Core field
1424 else {
1425 $info = civicrm_api3($props['entity'], 'getfields');
1426 foreach ($info['values'] as $uniqueName => $fieldSpec) {
1427 if (
1428 $uniqueName === $props['field'] ||
1429 CRM_Utils_Array::value('name', $fieldSpec) === $props['field'] ||
1430 in_array($props['field'], CRM_Utils_Array::value('api.aliases', $fieldSpec, []))
1431 ) {
1432 break;
1433 }
1434 }
1435 $label = isset($props['label']) ? $props['label'] : $fieldSpec['title'];
1436 if (CRM_Utils_Array::value('context', $props) != 'search') {
1437 $props['data-option-edit-path'] = array_key_exists('option_url', $props) ? $props['option_url'] : CRM_Core_PseudoConstant::getOptionEditUrl($fieldSpec);
1438 }
1439 }
1440 $props['class'] = (isset($props['class']) ? $props['class'] . ' ' : '') . "crm-select2";
1441 $props['data-api-entity'] = $props['entity'];
1442 $props['data-api-field'] = $props['field'];
1443 CRM_Utils_Array::remove($props, 'label', 'entity', 'field', 'option_url', 'options', 'context');
1444 return $this->add('select', $name, $label, $options, $required, $props);
1445 }
1446
1447 /**
1448 * Adds a field based on metadata.
1449 *
1450 * @param $name
1451 * Field name to go on the form.
1452 * @param array $props
1453 * Mix of html attributes and special properties, namely.
1454 * - entity (api entity name, can usually be inferred automatically from the form class)
1455 * - name (field name - only needed if different from name used on the form)
1456 * - option_url - path to edit this option list - usually retrieved automatically - set to NULL to disable link
1457 * - placeholder - set to NULL to disable
1458 * - multiple - bool
1459 * - context - @see CRM_Core_DAO::buildOptionsContext
1460 * @param bool $required
1461 * @param bool $legacyDate
1462 * Temporary param to facilitate the conversion of fields to use the datepicker in
1463 * a controlled way. To convert the field the jcalendar code needs to be removed from the
1464 * tpl as well. That file is intended to be EOL.
1465 *
1466 * @throws \CiviCRM_API3_Exception
1467 * @throws \Exception
1468 * @return mixed
1469 * HTML_QuickForm_Element
1470 * void
1471 */
1472 public function addField($name, $props = [], $required = FALSE, $legacyDate = TRUE) {
1473 // Resolve context.
1474 if (empty($props['context'])) {
1475 $props['context'] = $this->getDefaultContext();
1476 }
1477 $context = $props['context'];
1478 // Resolve entity.
1479 if (empty($props['entity'])) {
1480 $props['entity'] = $this->getDefaultEntity();
1481 }
1482 // Resolve field.
1483 if (empty($props['name'])) {
1484 $props['name'] = strrpos($name, '[') ? rtrim(substr($name, 1 + strrpos($name, '[')), ']') : $name;
1485 }
1486 // Resolve action.
1487 if (empty($props['action'])) {
1488 $props['action'] = $this->getApiAction();
1489 }
1490
1491 // Handle custom fields
1492 if (strpos($name, 'custom_') === 0 && is_numeric($name[7])) {
1493 $fieldId = (int) substr($name, 7);
1494 return CRM_Core_BAO_CustomField::addQuickFormElement($this, $name, $fieldId, $required, $context == 'search', CRM_Utils_Array::value('label', $props));
1495 }
1496
1497 // Core field - get metadata.
1498 $fieldSpec = civicrm_api3($props['entity'], 'getfield', $props);
1499 $fieldSpec = $fieldSpec['values'];
1500 $fieldSpecLabel = isset($fieldSpec['html']['label']) ? $fieldSpec['html']['label'] : CRM_Utils_Array::value('title', $fieldSpec);
1501 $label = CRM_Utils_Array::value('label', $props, $fieldSpecLabel);
1502
1503 $widget = isset($props['type']) ? $props['type'] : $fieldSpec['html']['type'];
1504 if ($widget == 'TextArea' && $context == 'search') {
1505 $widget = 'Text';
1506 }
1507
1508 $isSelect = (in_array($widget, [
1509 'Select',
1510 'CheckBoxGroup',
1511 'RadioGroup',
1512 'Radio',
1513 ]));
1514
1515 if ($isSelect) {
1516 // Fetch options from the api unless passed explicitly.
1517 if (isset($props['options'])) {
1518 $options = $props['options'];
1519 }
1520 else {
1521 $options = isset($fieldSpec['options']) ? $fieldSpec['options'] : NULL;
1522 }
1523 if ($context == 'search') {
1524 $widget = 'Select';
1525 $props['multiple'] = CRM_Utils_Array::value('multiple', $props, TRUE);
1526 }
1527
1528 // Add data for popup link.
1529 $canEditOptions = CRM_Core_Permission::check('administer CiviCRM');
1530 $hasOptionUrl = !empty($props['option_url']);
1531 $optionUrlKeyIsSet = array_key_exists('option_url', $props);
1532 $shouldAdd = $context !== 'search' && $isSelect && $canEditOptions;
1533
1534 // Only add if key is not set, or if non-empty option url is provided
1535 if (($hasOptionUrl || !$optionUrlKeyIsSet) && $shouldAdd) {
1536 $optionUrl = $hasOptionUrl ? $props['option_url'] :
1537 CRM_Core_PseudoConstant::getOptionEditUrl($fieldSpec);
1538 $props['data-option-edit-path'] = $optionUrl;
1539 $props['data-api-entity'] = $props['entity'];
1540 $props['data-api-field'] = $props['name'];
1541 }
1542 }
1543 $props += CRM_Utils_Array::value('html', $fieldSpec, []);
1544 CRM_Utils_Array::remove($props, 'entity', 'name', 'context', 'label', 'action', 'type', 'option_url', 'options');
1545
1546 // TODO: refactor switch statement, to separate methods.
1547 switch ($widget) {
1548 case 'Text':
1549 case 'Url':
1550 case 'Number':
1551 case 'Email':
1552 //TODO: Autodetect ranges
1553 $props['size'] = isset($props['size']) ? $props['size'] : 60;
1554 return $this->add(strtolower($widget), $name, $label, $props, $required);
1555
1556 case 'hidden':
1557 return $this->add('hidden', $name, NULL, $props, $required);
1558
1559 case 'TextArea':
1560 //Set default columns and rows for textarea.
1561 $props['rows'] = isset($props['rows']) ? $props['rows'] : 4;
1562 $props['cols'] = isset($props['cols']) ? $props['cols'] : 60;
1563 if (empty($props['maxlength']) && isset($fieldSpec['length'])) {
1564 $props['maxlength'] = $fieldSpec['length'];
1565 }
1566 return $this->add('textarea', $name, $label, $props, $required);
1567
1568 case 'Select Date':
1569 // This is a white list for fields that have been tested with
1570 // date picker. We should be able to remove the other
1571 if ($legacyDate) {
1572 //TODO: add range support
1573 //TODO: Add date formats
1574 //TODO: Add javascript template for dates.
1575 return $this->addDate($name, $label, $required, $props);
1576 }
1577 else {
1578 $fieldSpec = CRM_Utils_Date::addDateMetadataToField($fieldSpec, $fieldSpec);
1579 $attributes = ['format' => $fieldSpec['date_format']];
1580 return $this->add('datepicker', $name, $label, $attributes, $required, $fieldSpec['datepicker']['extra']);
1581 }
1582
1583 case 'Radio':
1584 $separator = isset($props['separator']) ? $props['separator'] : NULL;
1585 unset($props['separator']);
1586 if (!isset($props['allowClear'])) {
1587 $props['allowClear'] = !$required;
1588 }
1589 return $this->addRadio($name, $label, $options, $props, $separator, $required);
1590
1591 case 'ChainSelect':
1592 $props += [
1593 'required' => $required,
1594 'label' => $label,
1595 'multiple' => $context == 'search',
1596 ];
1597 return $this->addChainSelect($name, $props);
1598
1599 case 'Select':
1600 $props['class'] = CRM_Utils_Array::value('class', $props, 'big') . ' crm-select2';
1601 if (!array_key_exists('placeholder', $props)) {
1602 $props['placeholder'] = $required ? ts('- select -') : ($context == 'search' ? ts('- any -') : ts('- none -'));
1603 }
1604 // TODO: Add and/or option for fields that store multiple values
1605 return $this->add('select', $name, $label, $options, $required, $props);
1606
1607 case 'CheckBoxGroup':
1608 return $this->addCheckBox($name, $label, array_flip($options), $required, $props);
1609
1610 case 'RadioGroup':
1611 return $this->addRadio($name, $label, $options, $props, NULL, $required);
1612
1613 case 'CheckBox':
1614 $text = isset($props['text']) ? $props['text'] : NULL;
1615 unset($props['text']);
1616 return $this->addElement('checkbox', $name, $label, $text, $props);
1617
1618 //add support for 'Advcheckbox' field
1619 case 'advcheckbox':
1620 $text = isset($props['text']) ? $props['text'] : NULL;
1621 unset($props['text']);
1622 return $this->addElement('advcheckbox', $name, $label, $text, $props);
1623
1624 case 'File':
1625 // We should not build upload file in search mode.
1626 if ($context == 'search') {
1627 return;
1628 }
1629 $file = $this->add('file', $name, $label, $props, $required);
1630 $this->addUploadElement($name);
1631 return $file;
1632
1633 case 'RichTextEditor':
1634 return $this->add('wysiwyg', $name, $label, $props, $required);
1635
1636 case 'EntityRef':
1637 return $this->addEntityRef($name, $label, $props, $required);
1638
1639 case 'Password':
1640 $props['size'] = isset($props['size']) ? $props['size'] : 60;
1641 return $this->add('password', $name, $label, $props, $required);
1642
1643 // Check datatypes of fields
1644 // case 'Int':
1645 //case 'Float':
1646 //case 'Money':
1647 //case read only fields
1648 default:
1649 throw new Exception("Unsupported html-element " . $widget);
1650 }
1651 }
1652
1653 /**
1654 * Add a widget for selecting/editing/creating/copying a profile form
1655 *
1656 * @param string $name
1657 * HTML form-element name.
1658 * @param string $label
1659 * Printable label.
1660 * @param string $allowCoreTypes
1661 * Only present a UFGroup if its group_type includes a subset of $allowCoreTypes; e.g. 'Individual', 'Activity'.
1662 * @param string $allowSubTypes
1663 * Only present a UFGroup if its group_type is compatible with $allowSubypes.
1664 * @param array $entities
1665 * @param bool $default
1666 * //CRM-15427.
1667 * @param string $usedFor
1668 */
1669 public function addProfileSelector($name, $label, $allowCoreTypes, $allowSubTypes, $entities, $default = FALSE, $usedFor = NULL) {
1670 // Output widget
1671 // FIXME: Instead of adhoc serialization, use a single json_encode()
1672 CRM_UF_Page_ProfileEditor::registerProfileScripts();
1673 CRM_UF_Page_ProfileEditor::registerSchemas(CRM_Utils_Array::collect('entity_type', $entities));
1674 $this->add('text', $name, $label, [
1675 'class' => 'crm-profile-selector',
1676 // Note: client treats ';;' as equivalent to \0, and ';;' works better in HTML
1677 'data-group-type' => CRM_Core_BAO_UFGroup::encodeGroupType($allowCoreTypes, $allowSubTypes, ';;'),
1678 'data-entities' => json_encode($entities),
1679 //CRM-15427
1680 'data-default' => $default,
1681 'data-usedfor' => json_encode($usedFor),
1682 ]);
1683 }
1684
1685 /**
1686 * @return null
1687 */
1688 public function getRootTitle() {
1689 return NULL;
1690 }
1691
1692 /**
1693 * @return string
1694 */
1695 public function getCompleteTitle() {
1696 return $this->getRootTitle() . $this->getTitle();
1697 }
1698
1699 /**
1700 * @return CRM_Core_Smarty
1701 */
1702 public static function &getTemplate() {
1703 return self::$_template;
1704 }
1705
1706 /**
1707 * @param $elementName
1708 */
1709 public function addUploadElement($elementName) {
1710 $uploadNames = $this->get('uploadNames');
1711 if (!$uploadNames) {
1712 $uploadNames = [];
1713 }
1714 if (is_array($elementName)) {
1715 foreach ($elementName as $name) {
1716 if (!in_array($name, $uploadNames)) {
1717 $uploadNames[] = $name;
1718 }
1719 }
1720 }
1721 else {
1722 if (!in_array($elementName, $uploadNames)) {
1723 $uploadNames[] = $elementName;
1724 }
1725 }
1726 $this->set('uploadNames', $uploadNames);
1727
1728 $config = CRM_Core_Config::singleton();
1729 if (!empty($uploadNames)) {
1730 $this->controller->addUploadAction($config->customFileUploadDir, $uploadNames);
1731 }
1732 }
1733
1734 /**
1735 * @param $name
1736 *
1737 * @return null
1738 */
1739 public function getVar($name) {
1740 return isset($this->$name) ? $this->$name : NULL;
1741 }
1742
1743 /**
1744 * @param $name
1745 * @param $value
1746 */
1747 public function setVar($name, $value) {
1748 $this->$name = $value;
1749 }
1750
1751 /**
1752 * Add date.
1753 *
1754 * @deprecated
1755 * Use $this->add('datepicker', ...) instead.
1756 *
1757 * @param string $name
1758 * Name of the element.
1759 * @param string $label
1760 * Label of the element.
1761 * @param bool $required
1762 * True if required.
1763 * @param array $attributes
1764 * Key / value pair.
1765 */
1766 public function addDate($name, $label, $required = FALSE, $attributes = NULL) {
1767 if (!empty($attributes['formatType'])) {
1768 // get actual format
1769 $params = ['name' => $attributes['formatType']];
1770 $values = [];
1771
1772 // cache date information
1773 static $dateFormat;
1774 $key = "dateFormat_" . str_replace(' ', '_', $attributes['formatType']);
1775 if (empty($dateFormat[$key])) {
1776 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_PreferencesDate', $params, $values);
1777 $dateFormat[$key] = $values;
1778 }
1779 else {
1780 $values = $dateFormat[$key];
1781 }
1782
1783 if ($values['date_format']) {
1784 $attributes['format'] = $values['date_format'];
1785 }
1786
1787 if (!empty($values['time_format'])) {
1788 $attributes['timeFormat'] = $values['time_format'];
1789 }
1790 $attributes['startOffset'] = $values['start'];
1791 $attributes['endOffset'] = $values['end'];
1792 }
1793
1794 $config = CRM_Core_Config::singleton();
1795 if (empty($attributes['format'])) {
1796 $attributes['format'] = $config->dateInputFormat;
1797 }
1798
1799 if (!isset($attributes['startOffset'])) {
1800 $attributes['startOffset'] = 10;
1801 }
1802
1803 if (!isset($attributes['endOffset'])) {
1804 $attributes['endOffset'] = 10;
1805 }
1806
1807 $this->add('text', $name, $label, $attributes);
1808
1809 if (!empty($attributes['addTime']) || !empty($attributes['timeFormat'])) {
1810
1811 if (!isset($attributes['timeFormat'])) {
1812 $timeFormat = $config->timeInputFormat;
1813 }
1814 else {
1815 $timeFormat = $attributes['timeFormat'];
1816 }
1817
1818 // 1 - 12 hours and 2 - 24 hours, but for jquery widget it is 0 and 1 respectively
1819 if ($timeFormat) {
1820 $show24Hours = TRUE;
1821 if ($timeFormat == 1) {
1822 $show24Hours = FALSE;
1823 }
1824
1825 //CRM-6664 -we are having time element name
1826 //in either flat string or an array format.
1827 $elementName = $name . '_time';
1828 if (substr($name, -1) == ']') {
1829 $elementName = substr($name, 0, strlen($name) - 1) . '_time]';
1830 }
1831
1832 $this->add('text', $elementName, ts('Time'), ['timeFormat' => $show24Hours]);
1833 }
1834 }
1835
1836 if ($required) {
1837 $this->addRule($name, ts('Please select %1', [1 => $label]), 'required');
1838 if (!empty($attributes['addTime']) && !empty($attributes['addTimeRequired'])) {
1839 $this->addRule($elementName, ts('Please enter a time.'), 'required');
1840 }
1841 }
1842 }
1843
1844 /**
1845 * Function that will add date and time.
1846 *
1847 * @deprecated
1848 * Use $this->add('datepicker', ...) instead.
1849 *
1850 * @param string $name
1851 * @param string $label
1852 * @param bool $required
1853 * @param null $attributes
1854 */
1855 public function addDateTime($name, $label, $required = FALSE, $attributes = NULL) {
1856 $addTime = ['addTime' => TRUE];
1857 if (is_array($attributes)) {
1858 $attributes = array_merge($attributes, $addTime);
1859 }
1860 else {
1861 $attributes = $addTime;
1862 }
1863
1864 $this->addDate($name, $label, $required, $attributes);
1865 }
1866
1867 /**
1868 * Add a currency and money element to the form.
1869 *
1870 * @param string $name
1871 * @param string $label
1872 * @param bool $required
1873 * @param null $attributes
1874 * @param bool $addCurrency
1875 * @param string $currencyName
1876 * @param null $defaultCurrency
1877 * @param bool $freezeCurrency
1878 *
1879 * @return \HTML_QuickForm_Element
1880 */
1881 public function addMoney(
1882 $name,
1883 $label,
1884 $required = FALSE,
1885 $attributes = NULL,
1886 $addCurrency = TRUE,
1887 $currencyName = 'currency',
1888 $defaultCurrency = NULL,
1889 $freezeCurrency = FALSE
1890 ) {
1891 $element = $this->add('text', $name, $label, $attributes, $required);
1892 $this->addRule($name, ts('Please enter a valid amount.'), 'money');
1893
1894 if ($addCurrency) {
1895 $ele = $this->addCurrency($currencyName, NULL, TRUE, $defaultCurrency, $freezeCurrency);
1896 }
1897
1898 return $element;
1899 }
1900
1901 /**
1902 * Add currency element to the form.
1903 *
1904 * @param string $name
1905 * @param null $label
1906 * @param bool $required
1907 * @param string $defaultCurrency
1908 * @param bool $freezeCurrency
1909 * @param bool $setDefaultCurrency
1910 */
1911 public function addCurrency(
1912 $name = 'currency',
1913 $label = NULL,
1914 $required = TRUE,
1915 $defaultCurrency = NULL,
1916 $freezeCurrency = FALSE,
1917 $setDefaultCurrency = TRUE
1918 ) {
1919 $currencies = CRM_Core_OptionGroup::values('currencies_enabled');
1920 if (!empty($defaultCurrency) && !array_key_exists($defaultCurrency, $currencies)) {
1921 Civi::log()->warning('addCurrency: Currency ' . $defaultCurrency . ' is disabled but still in use!');
1922 $currencies[$defaultCurrency] = $defaultCurrency;
1923 }
1924 $options = ['class' => 'crm-select2 eight'];
1925 if (!$required) {
1926 $currencies = ['' => ''] + $currencies;
1927 $options['placeholder'] = ts('- none -');
1928 }
1929 $ele = $this->add('select', $name, $label, $currencies, $required, $options);
1930 if ($freezeCurrency) {
1931 $ele->freeze();
1932 }
1933 if (!$defaultCurrency) {
1934 $config = CRM_Core_Config::singleton();
1935 $defaultCurrency = $config->defaultCurrency;
1936 }
1937 // In some case, setting currency field by default might override the default value
1938 // as encountered in CRM-20527 for batch data entry
1939 if ($setDefaultCurrency) {
1940 $this->setDefaults([$name => $defaultCurrency]);
1941 }
1942 }
1943
1944 /**
1945 * Create a single or multiple entity ref field.
1946 * @param string $name
1947 * @param string $label
1948 * @param array $props
1949 * Mix of html and widget properties, including:.
1950 * - select - params to give to select2 widget
1951 * - entity - defaults to Contact
1952 * - create - can the user create a new entity on-the-fly?
1953 * Set to TRUE if entity is contact and you want the default profiles,
1954 * or pass in your own set of links. @see CRM_Campaign_BAO_Campaign::getEntityRefCreateLinks for format
1955 * note that permissions are checked automatically
1956 * - api - array of settings for the getlist api wrapper
1957 * note that it accepts a 'params' setting which will be passed to the underlying api
1958 * - placeholder - string
1959 * - multiple - bool
1960 * - class, etc. - other html properties
1961 * @param bool $required
1962 *
1963 * @return HTML_QuickForm_Element
1964 */
1965 public function addEntityRef($name, $label = '', $props = [], $required = FALSE) {
1966 // Default properties
1967 $props['api'] = CRM_Utils_Array::value('api', $props, []);
1968 $props['entity'] = CRM_Utils_String::convertStringToCamel(CRM_Utils_Array::value('entity', $props, 'Contact'));
1969 $props['class'] = ltrim(CRM_Utils_Array::value('class', $props, '') . ' crm-form-entityref');
1970
1971 if (array_key_exists('create', $props) && empty($props['create'])) {
1972 unset($props['create']);
1973 }
1974
1975 $props['placeholder'] = CRM_Utils_Array::value('placeholder', $props, $required ? ts('- select %1 -', [1 => ts(str_replace('_', ' ', $props['entity']))]) : ts('- none -'));
1976
1977 $defaults = [];
1978 if (!empty($props['multiple'])) {
1979 $defaults['multiple'] = TRUE;
1980 }
1981 $props['select'] = CRM_Utils_Array::value('select', $props, []) + $defaults;
1982
1983 $this->formatReferenceFieldAttributes($props, get_class($this));
1984 return $this->add('text', $name, $label, $props, $required);
1985 }
1986
1987 /**
1988 * @param array $props
1989 * @param string $formName
1990 */
1991 private function formatReferenceFieldAttributes(&$props, $formName) {
1992 CRM_Utils_Hook::alterEntityRefParams($props, $formName);
1993 $props['data-select-params'] = json_encode($props['select']);
1994 $props['data-api-params'] = $props['api'] ? json_encode($props['api']) : NULL;
1995 $props['data-api-entity'] = $props['entity'];
1996 if (!empty($props['create'])) {
1997 $props['data-create-links'] = json_encode($props['create']);
1998 }
1999 CRM_Utils_Array::remove($props, 'multiple', 'select', 'api', 'entity', 'create');
2000 }
2001
2002 /**
2003 * Convert all date fields within the params to mysql date ready for the
2004 * BAO layer. In this case fields are checked against the $_datefields defined for the form
2005 * and if time is defined it is incorporated
2006 *
2007 * @param array $params
2008 * Input params from the form.
2009 *
2010 * @todo it would probably be better to work on $this->_params than a passed array
2011 * @todo standardise the format which dates are passed to the BAO layer in & remove date
2012 * handling from BAO
2013 */
2014 public function convertDateFieldsToMySQL(&$params) {
2015 foreach ($this->_dateFields as $fieldName => $specs) {
2016 if (!empty($params[$fieldName])) {
2017 $params[$fieldName] = CRM_Utils_Date::isoToMysql(
2018 CRM_Utils_Date::processDate(
2019 $params[$fieldName],
2020 CRM_Utils_Array::value("{$fieldName}_time", $params), TRUE)
2021 );
2022 }
2023 else {
2024 if (isset($specs['default'])) {
2025 $params[$fieldName] = date('YmdHis', strtotime($specs['default']));
2026 }
2027 }
2028 }
2029 }
2030
2031 /**
2032 * @param $elementName
2033 */
2034 public function removeFileRequiredRules($elementName) {
2035 $this->_required = array_diff($this->_required, [$elementName]);
2036 if (isset($this->_rules[$elementName])) {
2037 foreach ($this->_rules[$elementName] as $index => $ruleInfo) {
2038 if ($ruleInfo['type'] == 'uploadedfile') {
2039 unset($this->_rules[$elementName][$index]);
2040 }
2041 }
2042 if (empty($this->_rules[$elementName])) {
2043 unset($this->_rules[$elementName]);
2044 }
2045 }
2046 }
2047
2048 /**
2049 * Function that can be defined in Form to override or.
2050 * perform specific action on cancel action
2051 */
2052 public function cancelAction() {
2053 }
2054
2055 /**
2056 * Helper function to verify that required fields have been filled.
2057 *
2058 * Typically called within the scope of a FormRule function
2059 *
2060 * @param array $fields
2061 * @param array $values
2062 * @param array $errors
2063 */
2064 public static function validateMandatoryFields($fields, $values, &$errors) {
2065 foreach ($fields as $name => $fld) {
2066 if (!empty($fld['is_required']) && CRM_Utils_System::isNull(CRM_Utils_Array::value($name, $values))) {
2067 $errors[$name] = ts('%1 is a required field.', [1 => $fld['title']]);
2068 }
2069 }
2070 }
2071
2072 /**
2073 * Get contact if for a form object. Prioritise
2074 * - cid in URL if 0 (on behalf on someoneelse)
2075 * (@todo consider setting a variable if onbehalf for clarity of downstream 'if's
2076 * - logged in user id if it matches the one in the cid in the URL
2077 * - contact id validated from a checksum from a checksum
2078 * - cid from the url if the caller has ACL permission to view
2079 * - fallback is logged in user (or ? NULL if no logged in user) (@todo wouldn't 0 be more intuitive?)
2080 *
2081 * @return NULL|int
2082 */
2083 protected function setContactID() {
2084 $tempID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
2085 if (isset($this->_params) && !empty($this->_params['select_contact_id'])) {
2086 $tempID = $this->_params['select_contact_id'];
2087 }
2088 if (isset($this->_params, $this->_params[0]) && !empty($this->_params[0]['select_contact_id'])) {
2089 // event form stores as an indexed array, contribution form not so much...
2090 $tempID = $this->_params[0]['select_contact_id'];
2091 }
2092
2093 // force to ignore the authenticated user
2094 if ($tempID === '0' || $tempID === 0) {
2095 // we set the cid on the form so that this will be retained for the Confirm page
2096 // in the multi-page form & prevent us returning the $userID when this is called
2097 // from that page
2098 // we don't really need to set it when $tempID is set because the params have that stored
2099 $this->set('cid', 0);
2100 CRM_Core_Resources::singleton()->addVars('coreForm', ['contact_id' => (int) $tempID]);
2101 return (int) $tempID;
2102 }
2103
2104 $userID = $this->getLoggedInUserContactID();
2105
2106 if (!is_null($tempID) && $tempID === $userID) {
2107 CRM_Core_Resources::singleton()->addVars('coreForm', ['contact_id' => (int) $tempID]);
2108 return (int) $userID;
2109 }
2110
2111 //check if this is a checksum authentication
2112 $userChecksum = CRM_Utils_Request::retrieve('cs', 'String', $this);
2113 if ($userChecksum) {
2114 //check for anonymous user.
2115 $validUser = CRM_Contact_BAO_Contact_Utils::validChecksum($tempID, $userChecksum);
2116 if ($validUser) {
2117 CRM_Core_Resources::singleton()->addVars('coreForm', ['contact_id' => (int) $tempID]);
2118 CRM_Core_Resources::singleton()->addVars('coreForm', ['checksum' => $userChecksum]);
2119 return $tempID;
2120 }
2121 }
2122 // check if user has permission, CRM-12062
2123 elseif ($tempID && CRM_Contact_BAO_Contact_Permission::allow($tempID)) {
2124 CRM_Core_Resources::singleton()->addVars('coreForm', ['contact_id' => (int) $tempID]);
2125 return $tempID;
2126 }
2127 if (is_numeric($userID)) {
2128 CRM_Core_Resources::singleton()->addVars('coreForm', ['contact_id' => (int) $userID]);
2129 }
2130 return is_numeric($userID) ? $userID : NULL;
2131 }
2132
2133 /**
2134 * Get the contact id that the form is being submitted for.
2135 *
2136 * @return int|null
2137 */
2138 public function getContactID() {
2139 return $this->setContactID();
2140 }
2141
2142 /**
2143 * Get the contact id of the logged in user.
2144 */
2145 public function getLoggedInUserContactID() {
2146 // check if the user is logged in and has a contact ID
2147 $session = CRM_Core_Session::singleton();
2148 return $session->get('userID');
2149 }
2150
2151 /**
2152 * Add autoselector field -if user has permission to view contacts
2153 * If adding this to a form you also need to add to the tpl e.g
2154 *
2155 * {if !empty($selectable)}
2156 * <div class="crm-summary-row">
2157 * <div class="crm-label">{$form.select_contact.label}</div>
2158 * <div class="crm-content">
2159 * {$form.select_contact.html}
2160 * </div>
2161 * </div>
2162 * {/if}
2163 *
2164 * @param array $profiles
2165 * Ids of profiles that are on the form (to be autofilled).
2166 * @param array $autoCompleteField
2167 *
2168 * - name_field
2169 * - id_field
2170 * - url (for ajax lookup)
2171 *
2172 * @todo add data attributes so we can deal with multiple instances on a form
2173 */
2174 public function addAutoSelector($profiles = [], $autoCompleteField = []) {
2175 $autoCompleteField = array_merge([
2176 'id_field' => 'select_contact_id',
2177 'placeholder' => ts('Select someone else ...'),
2178 'show_hide' => TRUE,
2179 'api' => ['params' => ['contact_type' => 'Individual']],
2180 ], $autoCompleteField);
2181
2182 if ($this->canUseAjaxContactLookups()) {
2183 $this->assign('selectable', $autoCompleteField['id_field']);
2184 $this->addEntityRef($autoCompleteField['id_field'], NULL, [
2185 'placeholder' => $autoCompleteField['placeholder'],
2186 'api' => $autoCompleteField['api'],
2187 ]);
2188
2189 CRM_Core_Resources::singleton()->addScriptFile('civicrm', 'js/AlternateContactSelector.js', 1, 'html-header')
2190 ->addSetting([
2191 'form' => ['autocompletes' => $autoCompleteField],
2192 'ids' => ['profile' => $profiles],
2193 ]);
2194 }
2195 }
2196
2197 /**
2198 */
2199 public function canUseAjaxContactLookups() {
2200 if (0 < (civicrm_api3('contact', 'getcount', ['check_permissions' => 1])) &&
2201 CRM_Core_Permission::check([['access AJAX API', 'access CiviCRM']])
2202 ) {
2203 return TRUE;
2204 }
2205 }
2206
2207 /**
2208 * Add the options appropriate to cid = zero - ie. autocomplete
2209 *
2210 * @todo there is considerable code duplication between the contribution forms & event forms. It is apparent
2211 * that small pieces of duplication are not being refactored into separate functions because their only shared parent
2212 * is this form. Inserting a class FrontEndForm.php between the contribution & event & this class would allow functions like this
2213 * and a dozen other small ones to be refactored into a shared parent with the reduction of much code duplication
2214 *
2215 * @param $onlinePaymentProcessorEnabled
2216 */
2217 public function addCIDZeroOptions($onlinePaymentProcessorEnabled) {
2218 $this->assign('nocid', TRUE);
2219 $profiles = [];
2220 if ($this->_values['custom_pre_id']) {
2221 $profiles[] = $this->_values['custom_pre_id'];
2222 }
2223 if ($this->_values['custom_post_id']) {
2224 $profiles = array_merge($profiles, (array) $this->_values['custom_post_id']);
2225 }
2226 if ($onlinePaymentProcessorEnabled) {
2227 $profiles[] = 'billing';
2228 }
2229 if (!empty($this->_values)) {
2230 $this->addAutoSelector($profiles);
2231 }
2232 }
2233
2234 /**
2235 * Set default values on form for given contact (or no contact defaults)
2236 *
2237 * @param mixed $profile_id
2238 * (can be id, or profile name).
2239 * @param int $contactID
2240 *
2241 * @return array
2242 */
2243 public function getProfileDefaults($profile_id = 'Billing', $contactID = NULL) {
2244 try {
2245 $defaults = civicrm_api3('profile', 'getsingle', [
2246 'profile_id' => (array) $profile_id,
2247 'contact_id' => $contactID,
2248 ]);
2249 return $defaults;
2250 }
2251 catch (Exception $e) {
2252 // the try catch block gives us silent failure -not 100% sure this is a good idea
2253 // as silent failures are often worse than noisy ones
2254 return [];
2255 }
2256 }
2257
2258 /**
2259 * Sets form attribute.
2260 * @see CRM.loadForm
2261 */
2262 public function preventAjaxSubmit() {
2263 $this->setAttribute('data-no-ajax-submit', 'true');
2264 }
2265
2266 /**
2267 * Sets form attribute.
2268 * @see CRM.loadForm
2269 */
2270 public function allowAjaxSubmit() {
2271 $this->removeAttribute('data-no-ajax-submit');
2272 }
2273
2274 /**
2275 * Sets page title based on entity and action.
2276 * @param string $entityLabel
2277 */
2278 public function setPageTitle($entityLabel) {
2279 switch ($this->_action) {
2280 case CRM_Core_Action::ADD:
2281 CRM_Utils_System::setTitle(ts('New %1', [1 => $entityLabel]));
2282 break;
2283
2284 case CRM_Core_Action::UPDATE:
2285 CRM_Utils_System::setTitle(ts('Edit %1', [1 => $entityLabel]));
2286 break;
2287
2288 case CRM_Core_Action::VIEW:
2289 case CRM_Core_Action::PREVIEW:
2290 CRM_Utils_System::setTitle(ts('View %1', [1 => $entityLabel]));
2291 break;
2292
2293 case CRM_Core_Action::DELETE:
2294 CRM_Utils_System::setTitle(ts('Delete %1', [1 => $entityLabel]));
2295 break;
2296 }
2297 }
2298
2299 /**
2300 * Create a chain-select target field. All settings are optional; the defaults usually work.
2301 *
2302 * @param string $elementName
2303 * @param array $settings
2304 *
2305 * @return HTML_QuickForm_Element
2306 */
2307 public function addChainSelect($elementName, $settings = []) {
2308 $props = $settings += [
2309 'control_field' => str_replace(['state_province', 'StateProvince', 'county', 'County'], [
2310 'country',
2311 'Country',
2312 'state_province',
2313 'StateProvince',
2314 ], $elementName),
2315 'data-callback' => strpos($elementName, 'rovince') ? 'civicrm/ajax/jqState' : 'civicrm/ajax/jqCounty',
2316 'label' => strpos($elementName, 'rovince') ? ts('State/Province') : ts('County'),
2317 'data-empty-prompt' => strpos($elementName, 'rovince') ? ts('Choose country first') : ts('Choose state first'),
2318 'data-none-prompt' => ts('- N/A -'),
2319 'multiple' => FALSE,
2320 'required' => FALSE,
2321 'placeholder' => empty($settings['required']) ? ts('- none -') : ts('- select -'),
2322 ];
2323 CRM_Utils_Array::remove($props, 'label', 'required', 'control_field', 'context');
2324 $props['class'] = (empty($props['class']) ? '' : "{$props['class']} ") . 'crm-select2';
2325 $props['data-select-prompt'] = $props['placeholder'];
2326 $props['data-name'] = $elementName;
2327
2328 $this->_chainSelectFields[$settings['control_field']] = $elementName;
2329
2330 // Passing NULL instead of an array of options
2331 // CRM-15225 - normally QF will reject any selected values that are not part of the field's options, but due to a
2332 // quirk in our patched version of HTML_QuickForm_select, this doesn't happen if the options are NULL
2333 // which seems a bit dirty but it allows our dynamically-popuplated select element to function as expected.
2334 return $this->add('select', $elementName, $settings['label'], NULL, $settings['required'], $props);
2335 }
2336
2337 /**
2338 * Add actions menu to results form.
2339 *
2340 * @param array $tasks
2341 */
2342 public function addTaskMenu($tasks) {
2343 if (is_array($tasks) && !empty($tasks)) {
2344 // Set constants means this will always load with an empty value, not reloading any submitted value.
2345 // This is appropriate as it is a pseudofield.
2346 $this->setConstants(['task' => '']);
2347 $this->assign('taskMetaData', $tasks);
2348 $select = $this->add('select', 'task', NULL, ['' => ts('Actions')], FALSE, [
2349 'class' => 'crm-select2 crm-action-menu fa-check-circle-o huge crm-search-result-actions',
2350 ]
2351 );
2352 foreach ($tasks as $key => $task) {
2353 $attributes = [];
2354 if (isset($task['data'])) {
2355 foreach ($task['data'] as $dataKey => $dataValue) {
2356 $attributes['data-' . $dataKey] = $dataValue;
2357 }
2358 }
2359 $select->addOption($task['title'], $key, $attributes);
2360 }
2361 if (empty($this->_actionButtonName)) {
2362 $this->_actionButtonName = $this->getButtonName('next', 'action');
2363 }
2364 $this->assign('actionButtonName', $this->_actionButtonName);
2365 $this->add('submit', $this->_actionButtonName, ts('Go'), ['class' => 'hiddenElement crm-search-go-button']);
2366
2367 // Radio to choose "All items" or "Selected items only"
2368 $selectedRowsRadio = $this->addElement('radio', 'radio_ts', NULL, '', 'ts_sel', ['checked' => 'checked']);
2369 $allRowsRadio = $this->addElement('radio', 'radio_ts', NULL, '', 'ts_all');
2370 $this->assign('ts_sel_id', $selectedRowsRadio->_attributes['id']);
2371 $this->assign('ts_all_id', $allRowsRadio->_attributes['id']);
2372
2373 CRM_Core_Resources::singleton()->addScriptFile('civicrm', 'js/crm.searchForm.js', 1, 'html-header');
2374 }
2375 }
2376
2377 /**
2378 * Set options and attributes for chain select fields based on the controlling field's value
2379 */
2380 private function preProcessChainSelectFields() {
2381 foreach ($this->_chainSelectFields as $control => $target) {
2382 // The 'target' might get missing if extensions do removeElement() in a form hook.
2383 if ($this->elementExists($target)) {
2384 $targetField = $this->getElement($target);
2385 $targetType = $targetField->getAttribute('data-callback') == 'civicrm/ajax/jqCounty' ? 'county' : 'stateProvince';
2386 $options = [];
2387 // If the control field is on the form, setup chain-select and dynamically populate options
2388 if ($this->elementExists($control)) {
2389 $controlField = $this->getElement($control);
2390 $controlType = $targetType == 'county' ? 'stateProvince' : 'country';
2391
2392 $targetField->setAttribute('class', $targetField->getAttribute('class') . ' crm-chain-select-target');
2393
2394 $css = (string) $controlField->getAttribute('class');
2395 $controlField->updateAttributes([
2396 'class' => ($css ? "$css " : 'crm-select2 ') . 'crm-chain-select-control',
2397 'data-target' => $target,
2398 ]);
2399 $controlValue = $controlField->getValue();
2400 if ($controlValue) {
2401 $options = CRM_Core_BAO_Location::getChainSelectValues($controlValue, $controlType, TRUE);
2402 if (!$options) {
2403 $targetField->setAttribute('placeholder', $targetField->getAttribute('data-none-prompt'));
2404 }
2405 }
2406 else {
2407 $targetField->setAttribute('placeholder', $targetField->getAttribute('data-empty-prompt'));
2408 $targetField->setAttribute('disabled', 'disabled');
2409 }
2410 }
2411 // Control field not present - fall back to loading default options
2412 else {
2413 $options = CRM_Core_PseudoConstant::$targetType();
2414 }
2415 if (!$targetField->getAttribute('multiple')) {
2416 $options = ['' => $targetField->getAttribute('placeholder')] + $options;
2417 $targetField->removeAttribute('placeholder');
2418 }
2419 $targetField->_options = [];
2420 $targetField->loadArray($options);
2421 }
2422 }
2423 }
2424
2425 /**
2426 * Validate country / state / county match and suppress unwanted "required" errors
2427 */
2428 private function validateChainSelectFields() {
2429 foreach ($this->_chainSelectFields as $control => $target) {
2430 if ($this->elementExists($control) && $this->elementExists($target)) {
2431 $controlValue = (array) $this->getElementValue($control);
2432 $targetField = $this->getElement($target);
2433 $controlType = $targetField->getAttribute('data-callback') == 'civicrm/ajax/jqCounty' ? 'stateProvince' : 'country';
2434 $targetValue = array_filter((array) $targetField->getValue());
2435 if ($targetValue || $this->getElementError($target)) {
2436 $options = CRM_Core_BAO_Location::getChainSelectValues($controlValue, $controlType, TRUE);
2437 if ($targetValue) {
2438 if (!array_intersect($targetValue, array_keys($options))) {
2439 $this->setElementError($target, $controlType == 'country' ? ts('State/Province does not match the selected Country') : ts('County does not match the selected State/Province'));
2440 }
2441 }
2442 // Suppress "required" error for field if it has no options
2443 elseif (!$options) {
2444 $this->setElementError($target, NULL);
2445 }
2446 }
2447 }
2448 }
2449 }
2450
2451 /**
2452 * Assign billing name to the template.
2453 *
2454 * @param array $params
2455 * Form input params, default to $this->_params.
2456 *
2457 * @return string
2458 */
2459 public function assignBillingName($params = []) {
2460 $name = '';
2461 if (empty($params)) {
2462 $params = $this->_params;
2463 }
2464 if (!empty($params['billing_first_name'])) {
2465 $name = $params['billing_first_name'];
2466 }
2467
2468 if (!empty($params['billing_middle_name'])) {
2469 $name .= " {$params['billing_middle_name']}";
2470 }
2471
2472 if (!empty($params['billing_last_name'])) {
2473 $name .= " {$params['billing_last_name']}";
2474 }
2475 $name = trim($name);
2476 $this->assign('billingName', $name);
2477 return $name;
2478 }
2479
2480 /**
2481 * Get the currency for the form.
2482 *
2483 * @todo this should be overriden on the forms rather than having this
2484 * historic, possible handling in here. As we clean that up we should
2485 * add deprecation notices into here.
2486 *
2487 * @param array $submittedValues
2488 * Array allowed so forms inheriting this class do not break.
2489 * Ideally we would make a clear standard around how submitted values
2490 * are stored (is $this->_values consistently doing that?).
2491 *
2492 * @return string
2493 */
2494 public function getCurrency($submittedValues = []) {
2495 $currency = CRM_Utils_Array::value('currency', $this->_values);
2496 // For event forms, currency is in a different spot
2497 if (empty($currency)) {
2498 $currency = CRM_Utils_Array::value('currency', CRM_Utils_Array::value('event', $this->_values));
2499 }
2500 if (empty($currency)) {
2501 $currency = CRM_Utils_Request::retrieveValue('currency', 'String');
2502 }
2503 // @todo If empty there is a problem - we should probably put in a deprecation notice
2504 // to warn if that seems to be happening.
2505 return $currency;
2506 }
2507
2508 /**
2509 * Is the form in view or edit mode.
2510 *
2511 * The 'addField' function relies on the form action being one of a set list
2512 * of actions. Checking for these allows for an early return.
2513 *
2514 * @return bool
2515 */
2516 protected function isFormInViewOrEditMode() {
2517 return in_array($this->_action, [
2518 CRM_Core_Action::UPDATE,
2519 CRM_Core_Action::ADD,
2520 CRM_Core_Action::VIEW,
2521 CRM_Core_Action::BROWSE,
2522 CRM_Core_Action::BASIC,
2523 CRM_Core_Action::ADVANCED,
2524 CRM_Core_Action::PREVIEW,
2525 ]);
2526 }
2527
2528 }