Merge "Make addedwatchtext less verbose"
[mediawiki.git] / includes / htmlform / HTMLFormField.php
blob1d8137ef87b6955784f85bfd1e402dff5d666e1d
1 <?php
3 /**
4 * The parent class to generate form fields. Any field type should
5 * be a subclass of this.
6 */
7 abstract class HTMLFormField {
8 public $mParams;
10 protected $mValidationCallback;
11 protected $mFilterCallback;
12 protected $mName;
13 protected $mDir;
14 protected $mLabel; # String label. Set on construction
15 protected $mID;
16 protected $mClass = '';
17 protected $mVFormClass = '';
18 protected $mHelpClass = false;
19 protected $mDefault;
20 protected $mOptions = false;
21 protected $mOptionsLabelsNotFromMessage = false;
22 protected $mHideIf = null;
24 /**
25 * @var bool If true will generate an empty div element with no label
26 * @since 1.22
28 protected $mShowEmptyLabels = true;
30 /**
31 * @var HTMLForm
33 public $mParent;
35 /**
36 * This function must be implemented to return the HTML to generate
37 * the input object itself. It should not implement the surrounding
38 * table cells/rows, or labels/help messages.
40 * @param string $value The value to set the input to; eg a default
41 * text for a text input.
43 * @return string Valid HTML.
45 abstract function getInputHTML( $value );
47 /**
48 * Same as getInputHTML, but returns an OOUI object.
49 * Defaults to false, which getOOUI will interpret as "use the HTML version"
51 * @param string $value
52 * @return OOUI\\Widget|false
54 function getInputOOUI( $value ) {
55 return false;
58 /**
59 * Get a translated interface message
61 * This is a wrapper around $this->mParent->msg() if $this->mParent is set
62 * and wfMessage() otherwise.
64 * Parameters are the same as wfMessage().
66 * @return Message
68 function msg() {
69 $args = func_get_args();
71 if ( $this->mParent ) {
72 $callback = array( $this->mParent, 'msg' );
73 } else {
74 $callback = 'wfMessage';
77 return call_user_func_array( $callback, $args );
81 /**
82 * Fetch a field value from $alldata for the closest field matching a given
83 * name.
85 * This is complex because it needs to handle array fields like the user
86 * would expect. The general algorithm is to look for $name as a sibling
87 * of $this, then a sibling of $this's parent, and so on. Keeping in mind
88 * that $name itself might be referencing an array.
90 * @param array $alldata
91 * @param string $name
92 * @return string
94 protected function getNearestFieldByName( $alldata, $name ) {
95 $tmp = $this->mName;
96 $thisKeys = array();
97 while ( preg_match( '/^(.+)\[([^\]]+)\]$/', $tmp, $m ) ) {
98 array_unshift( $thisKeys, $m[2] );
99 $tmp = $m[1];
101 if ( substr( $tmp, 0, 2 ) == 'wp' &&
102 !isset( $alldata[$tmp] ) &&
103 isset( $alldata[substr( $tmp, 2 )] )
105 // Adjust for name mangling.
106 $tmp = substr( $tmp, 2 );
108 array_unshift( $thisKeys, $tmp );
110 $tmp = $name;
111 $nameKeys = array();
112 while ( preg_match( '/^(.+)\[([^\]]+)\]$/', $tmp, $m ) ) {
113 array_unshift( $nameKeys, $m[2] );
114 $tmp = $m[1];
116 array_unshift( $nameKeys, $tmp );
118 $testValue = '';
119 for ( $i = count( $thisKeys ) - 1; $i >= 0; $i-- ) {
120 $keys = array_merge( array_slice( $thisKeys, 0, $i ), $nameKeys );
121 $data = $alldata;
122 while ( $keys ) {
123 $key = array_shift( $keys );
124 if ( !is_array( $data ) || !isset( $data[$key] ) ) {
125 continue 2;
127 $data = $data[$key];
129 $testValue = (string)$data;
130 break;
133 return $testValue;
137 * Helper function for isHidden to handle recursive data structures.
139 * @param array $alldata
140 * @param array $params
141 * @return bool
142 * @throws MWException
144 protected function isHiddenRecurse( array $alldata, array $params ) {
145 $origParams = $params;
146 $op = array_shift( $params );
148 try {
149 switch ( $op ) {
150 case 'AND':
151 foreach ( $params as $i => $p ) {
152 if ( !is_array( $p ) ) {
153 throw new MWException(
154 "Expected array, found " . gettype( $p ) . " at index $i"
157 if ( !$this->isHiddenRecurse( $alldata, $p ) ) {
158 return false;
161 return true;
163 case 'OR':
164 foreach ( $params as $p ) {
165 if ( !is_array( $p ) ) {
166 throw new MWException(
167 "Expected array, found " . gettype( $p ) . " at index $i"
170 if ( $this->isHiddenRecurse( $alldata, $p ) ) {
171 return true;
174 return false;
176 case 'NAND':
177 foreach ( $params as $i => $p ) {
178 if ( !is_array( $p ) ) {
179 throw new MWException(
180 "Expected array, found " . gettype( $p ) . " at index $i"
183 if ( !$this->isHiddenRecurse( $alldata, $p ) ) {
184 return true;
187 return false;
189 case 'NOR':
190 foreach ( $params as $p ) {
191 if ( !is_array( $p ) ) {
192 throw new MWException(
193 "Expected array, found " . gettype( $p ) . " at index $i"
196 if ( $this->isHiddenRecurse( $alldata, $p ) ) {
197 return false;
200 return true;
202 case 'NOT':
203 if ( count( $params ) !== 1 ) {
204 throw new MWException( "NOT takes exactly one parameter" );
206 $p = $params[0];
207 if ( !is_array( $p ) ) {
208 throw new MWException(
209 "Expected array, found " . gettype( $p ) . " at index 0"
212 return !$this->isHiddenRecurse( $alldata, $p );
214 case '===':
215 case '!==':
216 if ( count( $params ) !== 2 ) {
217 throw new MWException( "$op takes exactly two parameters" );
219 list( $field, $value ) = $params;
220 if ( !is_string( $field ) || !is_string( $value ) ) {
221 throw new MWException( "Parameters for $op must be strings" );
223 $testValue = $this->getNearestFieldByName( $alldata, $field );
224 switch ( $op ) {
225 case '===':
226 return ( $value === $testValue );
227 case '!==':
228 return ( $value !== $testValue );
231 default:
232 throw new MWException( "Unknown operation" );
234 } catch ( Exception $ex ) {
235 throw new MWException(
236 "Invalid hide-if specification for $this->mName: " .
237 $ex->getMessage() . " in " . var_export( $origParams, true ),
238 0, $ex
244 * Test whether this field is supposed to be hidden, based on the values of
245 * the other form fields.
247 * @since 1.23
248 * @param array $alldata The data collected from the form
249 * @return bool
251 function isHidden( $alldata ) {
252 if ( !$this->mHideIf ) {
253 return false;
256 return $this->isHiddenRecurse( $alldata, $this->mHideIf );
260 * Override this function if the control can somehow trigger a form
261 * submission that shouldn't actually submit the HTMLForm.
263 * @since 1.23
264 * @param string|array $value The value the field was submitted with
265 * @param array $alldata The data collected from the form
267 * @return bool True to cancel the submission
269 function cancelSubmit( $value, $alldata ) {
270 return false;
274 * Override this function to add specific validation checks on the
275 * field input. Don't forget to call parent::validate() to ensure
276 * that the user-defined callback mValidationCallback is still run
278 * @param string|array $value The value the field was submitted with
279 * @param array $alldata The data collected from the form
281 * @return bool|string True on success, or String error to display, or
282 * false to fail validation without displaying an error.
284 function validate( $value, $alldata ) {
285 if ( $this->isHidden( $alldata ) ) {
286 return true;
289 if ( isset( $this->mParams['required'] )
290 && $this->mParams['required'] !== false
291 && $value === ''
293 return $this->msg( 'htmlform-required' )->parse();
296 if ( isset( $this->mValidationCallback ) ) {
297 return call_user_func( $this->mValidationCallback, $value, $alldata, $this->mParent );
300 return true;
303 function filter( $value, $alldata ) {
304 if ( isset( $this->mFilterCallback ) ) {
305 $value = call_user_func( $this->mFilterCallback, $value, $alldata, $this->mParent );
308 return $value;
312 * Should this field have a label, or is there no input element with the
313 * appropriate id for the label to point to?
315 * @return bool True to output a label, false to suppress
317 protected function needsLabel() {
318 return true;
322 * Tell the field whether to generate a separate label element if its label
323 * is blank.
325 * @since 1.22
327 * @param bool $show Set to false to not generate a label.
328 * @return void
330 public function setShowEmptyLabel( $show ) {
331 $this->mShowEmptyLabels = $show;
335 * Get the value that this input has been set to from a posted form,
336 * or the input's default value if it has not been set.
338 * @param WebRequest $request
339 * @return string The value
341 function loadDataFromRequest( $request ) {
342 if ( $request->getCheck( $this->mName ) ) {
343 return $request->getText( $this->mName );
344 } else {
345 return $this->getDefault();
350 * Initialise the object
352 * @param array $params Associative Array. See HTMLForm doc for syntax.
354 * @since 1.22 The 'label' attribute no longer accepts raw HTML, use 'label-raw' instead
355 * @throws MWException
357 function __construct( $params ) {
358 $this->mParams = $params;
360 if ( isset( $params['parent'] ) && $params['parent'] instanceof HTMLForm ) {
361 $this->mParent = $params['parent'];
364 # Generate the label from a message, if possible
365 if ( isset( $params['label-message'] ) ) {
366 $msgInfo = $params['label-message'];
368 if ( is_array( $msgInfo ) ) {
369 $msg = array_shift( $msgInfo );
370 } else {
371 $msg = $msgInfo;
372 $msgInfo = array();
375 $this->mLabel = $this->msg( $msg, $msgInfo )->parse();
376 } elseif ( isset( $params['label'] ) ) {
377 if ( $params['label'] === '&#160;' ) {
378 // Apparently some things set &nbsp directly and in an odd format
379 $this->mLabel = '&#160;';
380 } else {
381 $this->mLabel = htmlspecialchars( $params['label'] );
383 } elseif ( isset( $params['label-raw'] ) ) {
384 $this->mLabel = $params['label-raw'];
387 $this->mName = "wp{$params['fieldname']}";
388 if ( isset( $params['name'] ) ) {
389 $this->mName = $params['name'];
392 if ( isset( $params['dir'] ) ) {
393 $this->mDir = $params['dir'];
396 $validName = Sanitizer::escapeId( $this->mName );
397 $validName = str_replace( array( '.5B', '.5D' ), array( '[', ']' ), $validName );
398 if ( $this->mName != $validName && !isset( $params['nodata'] ) ) {
399 throw new MWException( "Invalid name '{$this->mName}' passed to " . __METHOD__ );
402 $this->mID = "mw-input-{$this->mName}";
404 if ( isset( $params['default'] ) ) {
405 $this->mDefault = $params['default'];
408 if ( isset( $params['id'] ) ) {
409 $id = $params['id'];
410 $validId = Sanitizer::escapeId( $id );
412 if ( $id != $validId ) {
413 throw new MWException( "Invalid id '$id' passed to " . __METHOD__ );
416 $this->mID = $id;
419 if ( isset( $params['cssclass'] ) ) {
420 $this->mClass = $params['cssclass'];
423 if ( isset( $params['csshelpclass'] ) ) {
424 $this->mHelpClass = $params['csshelpclass'];
427 if ( isset( $params['validation-callback'] ) ) {
428 $this->mValidationCallback = $params['validation-callback'];
431 if ( isset( $params['filter-callback'] ) ) {
432 $this->mFilterCallback = $params['filter-callback'];
435 if ( isset( $params['flatlist'] ) ) {
436 $this->mClass .= ' mw-htmlform-flatlist';
439 if ( isset( $params['hidelabel'] ) ) {
440 $this->mShowEmptyLabels = false;
443 if ( isset( $params['hide-if'] ) ) {
444 $this->mHideIf = $params['hide-if'];
449 * Get the complete table row for the input, including help text,
450 * labels, and whatever.
452 * @param string $value The value to set the input to.
454 * @return string Complete HTML table row.
456 function getTableRow( $value ) {
457 list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value );
458 $inputHtml = $this->getInputHTML( $value );
459 $fieldType = get_class( $this );
460 $helptext = $this->getHelpTextHtmlTable( $this->getHelpText() );
461 $cellAttributes = array();
462 $rowAttributes = array();
463 $rowClasses = '';
465 if ( !empty( $this->mParams['vertical-label'] ) ) {
466 $cellAttributes['colspan'] = 2;
467 $verticalLabel = true;
468 } else {
469 $verticalLabel = false;
472 $label = $this->getLabelHtml( $cellAttributes );
474 $field = Html::rawElement(
475 'td',
476 array( 'class' => 'mw-input' ) + $cellAttributes,
477 $inputHtml . "\n$errors"
480 if ( $this->mHideIf ) {
481 $rowAttributes['data-hide-if'] = FormatJson::encode( $this->mHideIf );
482 $rowClasses .= ' mw-htmlform-hide-if';
485 if ( $verticalLabel ) {
486 $html = Html::rawElement( 'tr',
487 $rowAttributes + array( 'class' => "mw-htmlform-vertical-label $rowClasses" ), $label );
488 $html .= Html::rawElement( 'tr',
489 $rowAttributes + array(
490 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass $rowClasses"
492 $field );
493 } else {
494 $html =
495 Html::rawElement( 'tr',
496 $rowAttributes + array(
497 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass $rowClasses"
499 $label . $field );
502 return $html . $helptext;
506 * Get the complete div for the input, including help text,
507 * labels, and whatever.
508 * @since 1.20
510 * @param string $value The value to set the input to.
512 * @return string Complete HTML table row.
514 public function getDiv( $value ) {
515 list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value );
516 $inputHtml = $this->getInputHTML( $value );
517 $fieldType = get_class( $this );
518 $helptext = $this->getHelpTextHtmlDiv( $this->getHelpText() );
519 $cellAttributes = array();
520 $label = $this->getLabelHtml( $cellAttributes );
522 $outerDivClass = array(
523 'mw-input',
524 'mw-htmlform-nolabel' => ( $label === '' )
527 $horizontalLabel = isset( $this->mParams['horizontal-label'] )
528 ? $this->mParams['horizontal-label'] : false;
530 if ( $horizontalLabel ) {
531 $field = '&#160;' . $inputHtml . "\n$errors";
532 } else {
533 $field = Html::rawElement(
534 'div',
535 array( 'class' => $outerDivClass ) + $cellAttributes,
536 $inputHtml . "\n$errors"
539 $divCssClasses = array( "mw-htmlform-field-$fieldType",
540 $this->mClass, $this->mVFormClass, $errorClass );
542 $wrapperAttributes = array(
543 'class' => $divCssClasses,
545 if ( $this->mHideIf ) {
546 $wrapperAttributes['data-hide-if'] = FormatJson::encode( $this->mHideIf );
547 $wrapperAttributes['class'][] = ' mw-htmlform-hide-if';
549 $html = Html::rawElement( 'div', $wrapperAttributes, $label . $field );
550 $html .= $helptext;
552 return $html;
556 * Get the OOUI version of the div. Falls back to getDiv by default.
557 * @since 1.26
559 * @param string $value The value to set the input to.
561 * @return string
563 public function getOOUI( $value ) {
564 list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value );
566 $inputField = $this->getInputOOUI( $value );
568 if ( !$inputField ) {
569 // This field doesn't have an OOUI implementation yet at all.
570 // OK, use this trick:
571 return $this->getDiv( $value );
574 $infusable = true;
575 if ( is_string( $inputField ) ) {
576 // Mmm… We have an OOUI implementation, but it's not complete, and we got a load of HTML.
577 // Cheat a little and wrap it in a widget! It won't be infusable, though, since client-side
578 // JavaScript doesn't know how to rebuilt the contents.
579 $inputField = new OOUI\Widget( array( 'content' => new OOUI\HtmlSnippet( $inputField ) ) );
580 $infusable = false;
583 $fieldType = get_class( $this );
584 $helpText = $this->getHelpText();
585 $config = array(
586 'classes' => array( "mw-htmlform-field-$fieldType", $this->mClass, $errorClass ),
587 'align' => $this->getLabelAlignOOUI(),
588 'label' => $this->getLabel(),
589 'help' => $helpText !== null ? new OOUI\HtmlSnippet( $helpText ) : null,
590 'infusable' => $infusable,
592 $field = $this->getFieldLayoutOOUI( $inputField, $config );
594 return $field . $errors;
598 * Get label alignment when generating field for OOUI.
599 * @return string 'left', 'right', 'top' or 'inline'
601 protected function getLabelAlignOOUI() {
602 return 'top';
606 * Get a FieldLayout (or subclass thereof) to wrap this field in when using OOUI output.
607 * @return OOUI\\FieldLayout|OOUI\\ActionFieldLayout
609 protected function getFieldLayoutOOUI( $inputField, $config ) {
610 if ( isset( $this->mClassWithButton ) ) {
611 $buttonWidget = $this->mClassWithButton->getInputOOUI( '' );
612 return new OOUI\ActionFieldLayout( $inputField, $buttonWidget, $config );
614 return new OOUI\FieldLayout( $inputField, $config );
618 * Get the complete raw fields for the input, including help text,
619 * labels, and whatever.
620 * @since 1.20
622 * @param string $value The value to set the input to.
624 * @return string Complete HTML table row.
626 public function getRaw( $value ) {
627 list( $errors, ) = $this->getErrorsAndErrorClass( $value );
628 $inputHtml = $this->getInputHTML( $value );
629 $helptext = $this->getHelpTextHtmlRaw( $this->getHelpText() );
630 $cellAttributes = array();
631 $label = $this->getLabelHtml( $cellAttributes );
633 $html = "\n$errors";
634 $html .= $label;
635 $html .= $inputHtml;
636 $html .= $helptext;
638 return $html;
642 * Get the complete field for the input, including help text,
643 * labels, and whatever. Fall back from 'vform' to 'div' when not overridden.
645 * @since 1.25
646 * @param string $value The value to set the input to.
647 * @return string Complete HTML field.
649 public function getVForm( $value ) {
650 // Ewwww
651 $this->mVFormClass = ' mw-ui-vform-field';
652 return $this->getDiv( $value );
656 * Get the complete field as an inline element.
657 * @since 1.25
658 * @param string $value The value to set the input to.
659 * @return string Complete HTML inline element
661 public function getInline( $value ) {
662 list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value );
663 $inputHtml = $this->getInputHTML( $value );
664 $helptext = $this->getHelpTextHtmlDiv( $this->getHelpText() );
665 $cellAttributes = array();
666 $label = $this->getLabelHtml( $cellAttributes );
668 $html = "\n" . $errors .
669 $label . '&#160;' .
670 $inputHtml .
671 $helptext;
673 return $html;
677 * Generate help text HTML in table format
678 * @since 1.20
680 * @param string|null $helptext
681 * @return string
683 public function getHelpTextHtmlTable( $helptext ) {
684 if ( is_null( $helptext ) ) {
685 return '';
688 $rowAttributes = array();
689 if ( $this->mHideIf ) {
690 $rowAttributes['data-hide-if'] = FormatJson::encode( $this->mHideIf );
691 $rowAttributes['class'] = 'mw-htmlform-hide-if';
694 $tdClasses = array( 'htmlform-tip' );
695 if ( $this->mHelpClass !== false ) {
696 $tdClasses[] = $this->mHelpClass;
698 $row = Html::rawElement( 'td', array( 'colspan' => 2, 'class' => $tdClasses ), $helptext );
699 $row = Html::rawElement( 'tr', $rowAttributes, $row );
701 return $row;
705 * Generate help text HTML in div format
706 * @since 1.20
708 * @param string|null $helptext
710 * @return string
712 public function getHelpTextHtmlDiv( $helptext ) {
713 if ( is_null( $helptext ) ) {
714 return '';
717 $wrapperAttributes = array(
718 'class' => 'htmlform-tip',
720 if ( $this->mHelpClass !== false ) {
721 $wrapperAttributes['class'] .= " {$this->mHelpClass}";
723 if ( $this->mHideIf ) {
724 $wrapperAttributes['data-hide-if'] = FormatJson::encode( $this->mHideIf );
725 $wrapperAttributes['class'] .= ' mw-htmlform-hide-if';
727 $div = Html::rawElement( 'div', $wrapperAttributes, $helptext );
729 return $div;
733 * Generate help text HTML formatted for raw output
734 * @since 1.20
736 * @param string|null $helptext
737 * @return string
739 public function getHelpTextHtmlRaw( $helptext ) {
740 return $this->getHelpTextHtmlDiv( $helptext );
744 * Determine the help text to display
745 * @since 1.20
746 * @return string HTML
748 public function getHelpText() {
749 $helptext = null;
751 if ( isset( $this->mParams['help-message'] ) ) {
752 $this->mParams['help-messages'] = array( $this->mParams['help-message'] );
755 if ( isset( $this->mParams['help-messages'] ) ) {
756 foreach ( $this->mParams['help-messages'] as $name ) {
757 $helpMessage = (array)$name;
758 $msg = $this->msg( array_shift( $helpMessage ), $helpMessage );
760 if ( $msg->exists() ) {
761 if ( is_null( $helptext ) ) {
762 $helptext = '';
763 } else {
764 $helptext .= $this->msg( 'word-separator' )->escaped(); // some space
766 $helptext .= $msg->parse(); // Append message
769 } elseif ( isset( $this->mParams['help'] ) ) {
770 $helptext = $this->mParams['help'];
773 return $helptext;
777 * Determine form errors to display and their classes
778 * @since 1.20
780 * @param string $value The value of the input
781 * @return array
783 public function getErrorsAndErrorClass( $value ) {
784 $errors = $this->validate( $value, $this->mParent->mFieldData );
786 if ( is_bool( $errors ) || !$this->mParent->wasSubmitted() ) {
787 $errors = '';
788 $errorClass = '';
789 } else {
790 $errors = self::formatErrors( $errors );
791 $errorClass = 'mw-htmlform-invalid-input';
794 return array( $errors, $errorClass );
798 * @return string
800 function getLabel() {
801 return is_null( $this->mLabel ) ? '' : $this->mLabel;
804 function getLabelHtml( $cellAttributes = array() ) {
805 # Don't output a for= attribute for labels with no associated input.
806 # Kind of hacky here, possibly we don't want these to be <label>s at all.
807 $for = array();
809 if ( $this->needsLabel() ) {
810 $for['for'] = $this->mID;
813 $labelValue = trim( $this->getLabel() );
814 $hasLabel = false;
815 if ( $labelValue !== '&#160;' && $labelValue !== '' ) {
816 $hasLabel = true;
819 $displayFormat = $this->mParent->getDisplayFormat();
820 $html = '';
821 $horizontalLabel = isset( $this->mParams['horizontal-label'] )
822 ? $this->mParams['horizontal-label'] : false;
824 if ( $displayFormat === 'table' ) {
825 $html =
826 Html::rawElement( 'td',
827 array( 'class' => 'mw-label' ) + $cellAttributes,
828 Html::rawElement( 'label', $for, $labelValue ) );
829 } elseif ( $hasLabel || $this->mShowEmptyLabels ) {
830 if ( $displayFormat === 'div' && !$horizontalLabel ) {
831 $html =
832 Html::rawElement( 'div',
833 array( 'class' => 'mw-label' ) + $cellAttributes,
834 Html::rawElement( 'label', $for, $labelValue ) );
835 } else {
836 $html = Html::rawElement( 'label', $for, $labelValue );
840 return $html;
843 function getDefault() {
844 if ( isset( $this->mDefault ) ) {
845 return $this->mDefault;
846 } else {
847 return null;
852 * Returns the attributes required for the tooltip and accesskey.
854 * @return array Attributes
856 public function getTooltipAndAccessKey() {
857 if ( empty( $this->mParams['tooltip'] ) ) {
858 return array();
861 return Linker::tooltipAndAccesskeyAttribs( $this->mParams['tooltip'] );
865 * Get a translated key if necessary.
866 * @param array|null $mappings Array of mappings, 'original' => 'translated'
867 * @param string $key
868 * @return string
870 protected function getMappedKey( $mappings, $key ) {
871 if ( !is_array( $mappings ) ) {
872 return $key;
875 if ( !empty( $mappings[$key] ) ) {
876 return $mappings[$key];
879 return $key;
883 * Returns the given attributes from the parameters
885 * @param array $list List of attributes to get
886 * @param array $mappings Optional - Key/value map of attribute names to use instead of the ones passed in
887 * @return array Attributes
889 public function getAttributes( array $list, array $mappings = null ) {
890 static $boolAttribs = array( 'disabled', 'required', 'multiple', 'readonly' );
892 $ret = array();
893 foreach ( $list as $key ) {
894 $mappedKey = $this->getMappedKey( $mappings, $key );
896 if ( in_array( $key, $boolAttribs ) ) {
897 if ( !empty( $this->mParams[$key] ) ) {
898 $ret[$mappedKey] = '';
900 } elseif ( isset( $this->mParams[$key] ) ) {
901 $ret[$mappedKey] = $this->mParams[$key];
905 return $ret;
909 * Given an array of msg-key => value mappings, returns an array with keys
910 * being the message texts. It also forces values to strings.
912 * @param array $options
913 * @return array
915 private function lookupOptionsKeys( $options ) {
916 $ret = array();
917 foreach ( $options as $key => $value ) {
918 $key = $this->msg( $key )->plain();
919 $ret[$key] = is_array( $value )
920 ? $this->lookupOptionsKeys( $value )
921 : strval( $value );
923 return $ret;
927 * Recursively forces values in an array to strings, because issues arise
928 * with integer 0 as a value.
930 * @param array $array
931 * @return array
933 static function forceToStringRecursive( $array ) {
934 if ( is_array( $array ) ) {
935 return array_map( array( __CLASS__, 'forceToStringRecursive' ), $array );
936 } else {
937 return strval( $array );
942 * Fetch the array of options from the field's parameters. In order, this
943 * checks 'options-messages', 'options', then 'options-message'.
945 * @return array|null Options array
947 public function getOptions() {
948 if ( $this->mOptions === false ) {
949 if ( array_key_exists( 'options-messages', $this->mParams ) ) {
950 $this->mOptions = $this->lookupOptionsKeys( $this->mParams['options-messages'] );
951 } elseif ( array_key_exists( 'options', $this->mParams ) ) {
952 $this->mOptionsLabelsNotFromMessage = true;
953 $this->mOptions = self::forceToStringRecursive( $this->mParams['options'] );
954 } elseif ( array_key_exists( 'options-message', $this->mParams ) ) {
955 /** @todo This is copied from Xml::listDropDown(), deprecate/avoid duplication? */
956 $message = $this->msg( $this->mParams['options-message'] )->inContentLanguage()->plain();
958 $optgroup = false;
959 $this->mOptions = array();
960 foreach ( explode( "\n", $message ) as $option ) {
961 $value = trim( $option );
962 if ( $value == '' ) {
963 continue;
964 } elseif ( substr( $value, 0, 1 ) == '*' && substr( $value, 1, 1 ) != '*' ) {
965 # A new group is starting...
966 $value = trim( substr( $value, 1 ) );
967 $optgroup = $value;
968 } elseif ( substr( $value, 0, 2 ) == '**' ) {
969 # groupmember
970 $opt = trim( substr( $value, 2 ) );
971 if ( $optgroup === false ) {
972 $this->mOptions[$opt] = $opt;
973 } else {
974 $this->mOptions[$optgroup][$opt] = $opt;
976 } else {
977 # groupless reason list
978 $optgroup = false;
979 $this->mOptions[$option] = $option;
982 } else {
983 $this->mOptions = null;
987 return $this->mOptions;
991 * Get options and make them into arrays suitable for OOUI.
992 * @return array Options for inclusion in a select or whatever.
994 public function getOptionsOOUI() {
995 $oldoptions = $this->getOptions();
997 if ( $oldoptions === null ) {
998 return null;
1001 $options = array();
1003 foreach ( $oldoptions as $text => $data ) {
1004 $options[] = array(
1005 'data' => $data,
1006 'label' => $text,
1010 return $options;
1014 * flatten an array of options to a single array, for instance,
1015 * a set of "<options>" inside "<optgroups>".
1017 * @param array $options Associative Array with values either Strings or Arrays
1018 * @return array Flattened input
1020 public static function flattenOptions( $options ) {
1021 $flatOpts = array();
1023 foreach ( $options as $value ) {
1024 if ( is_array( $value ) ) {
1025 $flatOpts = array_merge( $flatOpts, self::flattenOptions( $value ) );
1026 } else {
1027 $flatOpts[] = $value;
1031 return $flatOpts;
1035 * Formats one or more errors as accepted by field validation-callback.
1037 * @param string|Message|array $errors Array of strings or Message instances
1038 * @return string HTML
1039 * @since 1.18
1041 protected static function formatErrors( $errors ) {
1042 if ( is_array( $errors ) && count( $errors ) === 1 ) {
1043 $errors = array_shift( $errors );
1046 if ( is_array( $errors ) ) {
1047 $lines = array();
1048 foreach ( $errors as $error ) {
1049 if ( $error instanceof Message ) {
1050 $lines[] = Html::rawElement( 'li', array(), $error->parse() );
1051 } else {
1052 $lines[] = Html::rawElement( 'li', array(), $error );
1056 return Html::rawElement( 'ul', array( 'class' => 'error' ), implode( "\n", $lines ) );
1057 } else {
1058 if ( $errors instanceof Message ) {
1059 $errors = $errors->parse();
1062 return Html::rawElement( 'span', array( 'class' => 'error' ), $errors );