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