Merge "API: Add show=unread to ApiQueryWatchlist"
[mediawiki.git] / includes / htmlform / HTMLForm.php
blob01f3ab7a851e4e64d0a539d0e41751d7d744cc70
1 <?php
3 /**
4 * HTML form generation and submission handling.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
21 * @file
24 /**
25 * Object handling generic submission, CSRF protection, layout and
26 * other logic for UI forms. in a reusable manner.
28 * In order to generate the form, the HTMLForm object takes an array
29 * structure detailing the form fields available. Each element of the
30 * array is a basic property-list, including the type of field, the
31 * label it is to be given in the form, callbacks for validation and
32 * 'filtering', and other pertinent information.
34 * Field types are implemented as subclasses of the generic HTMLFormField
35 * object, and typically implement at least getInputHTML, which generates
36 * the HTML for the input field to be placed in the table.
38 * You can find extensive documentation on the www.mediawiki.org wiki:
39 * - https://www.mediawiki.org/wiki/HTMLForm
40 * - https://www.mediawiki.org/wiki/HTMLForm/tutorial
42 * The constructor input is an associative array of $fieldname => $info,
43 * where $info is an Associative Array with any of the following:
45 * 'class' -- the subclass of HTMLFormField that will be used
46 * to create the object. *NOT* the CSS class!
47 * 'type' -- roughly translates into the <select> type attribute.
48 * if 'class' is not specified, this is used as a map
49 * through HTMLForm::$typeMappings to get the class name.
50 * 'default' -- default value when the form is displayed
51 * 'id' -- HTML id attribute
52 * 'cssclass' -- CSS class
53 * 'options' -- associative array mapping labels to values.
54 * Some field types support multi-level arrays.
55 * 'options-messages' -- associative array mapping message keys to values.
56 * Some field types support multi-level arrays.
57 * 'options-message' -- message key to be parsed to extract the list of
58 * options (like 'ipbreason-dropdown').
59 * 'label-message' -- message key for a message to use as the label.
60 * can be an array of msg key and then parameters to
61 * the message.
62 * 'label' -- alternatively, a raw text message. Overridden by
63 * label-message
64 * 'help' -- message text for a message to use as a help text.
65 * 'help-message' -- message key for a message to use as a help text.
66 * can be an array of msg key and then parameters to
67 * the message.
68 * Overwrites 'help-messages' and 'help'.
69 * 'help-messages' -- array of message key. As above, each item can
70 * be an array of msg key and then parameters.
71 * Overwrites 'help'.
72 * 'required' -- passed through to the object, indicating that it
73 * is a required field.
74 * 'size' -- the length of text fields
75 * 'filter-callback -- a function name to give you the chance to
76 * massage the inputted value before it's processed.
77 * @see HTMLForm::filter()
78 * 'validation-callback' -- a function name to give you the chance
79 * to impose extra validation on the field input.
80 * @see HTMLForm::validate()
81 * 'name' -- By default, the 'name' attribute of the input field
82 * is "wp{$fieldname}". If you want a different name
83 * (eg one without the "wp" prefix), specify it here and
84 * it will be used without modification.
86 * Since 1.20, you can chain mutators to ease the form generation:
87 * @par Example:
88 * @code
89 * $form = new HTMLForm( $someFields );
90 * $form->setMethod( 'get' )
91 * ->setWrapperLegendMsg( 'message-key' )
92 * ->prepareForm()
93 * ->displayForm( '' );
94 * @endcode
95 * Note that you will have prepareForm and displayForm at the end. Other
96 * methods call done after that would simply not be part of the form :(
98 * @todo Document 'section' / 'subsection' stuff
100 class HTMLForm extends ContextSource {
101 // A mapping of 'type' inputs onto standard HTMLFormField subclasses
102 public static $typeMappings = array(
103 'api' => 'HTMLApiField',
104 'text' => 'HTMLTextField',
105 'textarea' => 'HTMLTextAreaField',
106 'select' => 'HTMLSelectField',
107 'radio' => 'HTMLRadioField',
108 'multiselect' => 'HTMLMultiSelectField',
109 'check' => 'HTMLCheckField',
110 'toggle' => 'HTMLCheckField',
111 'int' => 'HTMLIntField',
112 'float' => 'HTMLFloatField',
113 'info' => 'HTMLInfoField',
114 'selectorother' => 'HTMLSelectOrOtherField',
115 'selectandother' => 'HTMLSelectAndOtherField',
116 'submit' => 'HTMLSubmitField',
117 'hidden' => 'HTMLHiddenField',
118 'edittools' => 'HTMLEditTools',
119 'checkmatrix' => 'HTMLCheckMatrix',
120 'cloner' => 'HTMLFormFieldCloner',
121 // HTMLTextField will output the correct type="" attribute automagically.
122 // There are about four zillion other HTML5 input types, like range, but
123 // we don't use those at the moment, so no point in adding all of them.
124 'email' => 'HTMLTextField',
125 'password' => 'HTMLTextField',
126 'url' => 'HTMLTextField',
129 public $mFieldData;
131 protected $mMessagePrefix;
133 /** @var HTMLFormField[] */
134 protected $mFlatFields;
136 protected $mFieldTree;
137 protected $mShowReset = false;
138 protected $mShowSubmit = true;
140 protected $mSubmitCallback;
141 protected $mValidationErrorMessage;
143 protected $mPre = '';
144 protected $mHeader = '';
145 protected $mFooter = '';
146 protected $mSectionHeaders = array();
147 protected $mSectionFooters = array();
148 protected $mPost = '';
149 protected $mId;
150 protected $mTableId = '';
152 protected $mSubmitID;
153 protected $mSubmitName;
154 protected $mSubmitText;
155 protected $mSubmitTooltip;
157 protected $mTitle;
158 protected $mMethod = 'post';
159 protected $mWasSubmitted = false;
162 * Form action URL. false means we will use the URL to set Title
163 * @since 1.19
164 * @var bool|string
166 protected $mAction = false;
168 protected $mUseMultipart = false;
169 protected $mHiddenFields = array();
170 protected $mButtons = array();
172 protected $mWrapperLegend = false;
175 * If true, sections that contain both fields and subsections will
176 * render their subsections before their fields.
178 * Subclasses may set this to false to render subsections after fields
179 * instead.
181 protected $mSubSectionBeforeFields = true;
184 * Format in which to display form. For viable options,
185 * @see $availableDisplayFormats
186 * @var string
188 protected $displayFormat = 'table';
191 * Available formats in which to display the form
192 * @var array
194 protected $availableDisplayFormats = array(
195 'table',
196 'div',
197 'raw',
198 'vform',
202 * Build a new HTMLForm from an array of field attributes
204 * @param array $descriptor Array of Field constructs, as described above
205 * @param IContextSource $context Available since 1.18, will become compulsory in 1.18.
206 * Obviates the need to call $form->setTitle()
207 * @param string $messagePrefix A prefix to go in front of default messages
209 public function __construct( $descriptor, /*IContextSource*/ $context = null,
210 $messagePrefix = ''
212 if ( $context instanceof IContextSource ) {
213 $this->setContext( $context );
214 $this->mTitle = false; // We don't need them to set a title
215 $this->mMessagePrefix = $messagePrefix;
216 } elseif ( is_null( $context ) && $messagePrefix !== '' ) {
217 $this->mMessagePrefix = $messagePrefix;
218 } elseif ( is_string( $context ) && $messagePrefix === '' ) {
219 // B/C since 1.18
220 // it's actually $messagePrefix
221 $this->mMessagePrefix = $context;
224 // Expand out into a tree.
225 $loadedDescriptor = array();
226 $this->mFlatFields = array();
228 foreach ( $descriptor as $fieldname => $info ) {
229 $section = isset( $info['section'] )
230 ? $info['section']
231 : '';
233 if ( isset( $info['type'] ) && $info['type'] == 'file' ) {
234 $this->mUseMultipart = true;
237 $field = self::loadInputFromParameters( $fieldname, $info );
238 // FIXME During field's construct, the parent form isn't available!
239 // could add a 'parent' name-value to $info, could add a third parameter.
240 $field->mParent = $this;
242 // vform gets too much space if empty labels generate HTML.
243 if ( $this->isVForm() ) {
244 $field->setShowEmptyLabel( false );
247 $setSection =& $loadedDescriptor;
248 if ( $section ) {
249 $sectionParts = explode( '/', $section );
251 while ( count( $sectionParts ) ) {
252 $newName = array_shift( $sectionParts );
254 if ( !isset( $setSection[$newName] ) ) {
255 $setSection[$newName] = array();
258 $setSection =& $setSection[$newName];
262 $setSection[$fieldname] = $field;
263 $this->mFlatFields[$fieldname] = $field;
266 $this->mFieldTree = $loadedDescriptor;
270 * Set format in which to display the form
272 * @param string $format The name of the format to use, must be one of
273 * $this->availableDisplayFormats
275 * @throws MWException
276 * @since 1.20
277 * @return HTMLForm $this for chaining calls (since 1.20)
279 public function setDisplayFormat( $format ) {
280 if ( !in_array( $format, $this->availableDisplayFormats ) ) {
281 throw new MWException( 'Display format must be one of ' .
282 print_r( $this->availableDisplayFormats, true ) );
284 $this->displayFormat = $format;
286 return $this;
290 * Getter for displayFormat
291 * @since 1.20
292 * @return string
294 public function getDisplayFormat() {
295 return $this->displayFormat;
299 * Test if displayFormat is 'vform'
300 * @since 1.22
301 * @return bool
303 public function isVForm() {
304 return $this->displayFormat === 'vform';
308 * Add the HTMLForm-specific JavaScript, if it hasn't been
309 * done already.
310 * @deprecated since 1.18 load modules with ResourceLoader instead
312 static function addJS() {
313 wfDeprecated( __METHOD__, '1.18' );
317 * Get the HTMLFormField subclass for this descriptor.
319 * The descriptor can be passed either 'class' which is the name of
320 * a HTMLFormField subclass, or a shorter 'type' which is an alias.
321 * This makes sure the 'class' is always set, and also is returned by
322 * this function for ease.
324 * @since 1.23
326 * @param string $fieldname Name of the field
327 * @param array $descriptor Input Descriptor, as described above
329 * @throws MWException
330 * @return string Name of a HTMLFormField subclass
332 public static function getClassFromDescriptor( $fieldname, &$descriptor ) {
333 if ( isset( $descriptor['class'] ) ) {
334 $class = $descriptor['class'];
335 } elseif ( isset( $descriptor['type'] ) ) {
336 $class = self::$typeMappings[$descriptor['type']];
337 $descriptor['class'] = $class;
338 } else {
339 $class = null;
342 if ( !$class ) {
343 throw new MWException( "Descriptor with no class for $fieldname: "
344 . print_r( $descriptor, true ) );
347 return $class;
351 * Initialise a new Object for the field
353 * @param string $fieldname Name of the field
354 * @param array $descriptor Input Descriptor, as described above
356 * @throws MWException
357 * @return HTMLFormField subclass
359 public static function loadInputFromParameters( $fieldname, $descriptor ) {
360 $class = self::getClassFromDescriptor( $fieldname, $descriptor );
362 $descriptor['fieldname'] = $fieldname;
364 # @todo This will throw a fatal error whenever someone try to use
365 # 'class' to feed a CSS class instead of 'cssclass'. Would be
366 # great to avoid the fatal error and show a nice error.
367 $obj = new $class( $descriptor );
369 return $obj;
373 * Prepare form for submission.
375 * @attention When doing method chaining, that should be the very last
376 * method call before displayForm().
378 * @throws MWException
379 * @return HTMLForm $this for chaining calls (since 1.20)
381 function prepareForm() {
382 # Check if we have the info we need
383 if ( !$this->mTitle instanceof Title && $this->mTitle !== false ) {
384 throw new MWException( "You must call setTitle() on an HTMLForm" );
387 # Load data from the request.
388 $this->loadData();
390 return $this;
394 * Try submitting, with edit token check first
395 * @return Status|bool
397 function tryAuthorizedSubmit() {
398 $result = false;
400 $submit = false;
401 if ( $this->getMethod() != 'post' ) {
402 $submit = true; // no session check needed
403 } elseif ( $this->getRequest()->wasPosted() ) {
404 $editToken = $this->getRequest()->getVal( 'wpEditToken' );
405 if ( $this->getUser()->isLoggedIn() || $editToken != null ) {
406 // Session tokens for logged-out users have no security value.
407 // However, if the user gave one, check it in order to give a nice
408 // "session expired" error instead of "permission denied" or such.
409 $submit = $this->getUser()->matchEditToken( $editToken );
410 } else {
411 $submit = true;
415 if ( $submit ) {
416 $this->mWasSubmitted = true;
417 $result = $this->trySubmit();
420 return $result;
424 * The here's-one-I-made-earlier option: do the submission if
425 * posted, or display the form with or without funky validation
426 * errors
427 * @return bool|Status Whether submission was successful.
429 function show() {
430 $this->prepareForm();
432 $result = $this->tryAuthorizedSubmit();
433 if ( $result === true || ( $result instanceof Status && $result->isGood() ) ) {
434 return $result;
437 $this->displayForm( $result );
439 return false;
443 * Validate all the fields, and call the submission callback
444 * function if everything is kosher.
445 * @throws MWException
446 * @return mixed Bool true == Successful submission, Bool false
447 * == No submission attempted, anything else == Error to
448 * display.
450 function trySubmit() {
451 $this->mWasSubmitted = true;
453 # Check for cancelled submission
454 foreach ( $this->mFlatFields as $fieldname => $field ) {
455 if ( !empty( $field->mParams['nodata'] ) ) {
456 continue;
458 if ( $field->cancelSubmit( $this->mFieldData[$fieldname], $this->mFieldData ) ) {
459 $this->mWasSubmitted = false;
460 return false;
464 # Check for validation
465 foreach ( $this->mFlatFields as $fieldname => $field ) {
466 if ( !empty( $field->mParams['nodata'] ) ) {
467 continue;
469 if ( $field->validate(
470 $this->mFieldData[$fieldname],
471 $this->mFieldData )
472 !== true
474 return isset( $this->mValidationErrorMessage )
475 ? $this->mValidationErrorMessage
476 : array( 'htmlform-invalid-input' );
480 $callback = $this->mSubmitCallback;
481 if ( !is_callable( $callback ) ) {
482 throw new MWException( 'HTMLForm: no submit callback provided. Use ' .
483 'setSubmitCallback() to set one.' );
486 $data = $this->filterDataForSubmit( $this->mFieldData );
488 $res = call_user_func( $callback, $data, $this );
489 if ( $res === false ) {
490 $this->mWasSubmitted = false;
493 return $res;
497 * Test whether the form was considered to have been submitted or not, i.e.
498 * whether the last call to tryAuthorizedSubmit or trySubmit returned
499 * non-false.
501 * This will return false until HTMLForm::tryAuthorizedSubmit or
502 * HTMLForm::trySubmit is called.
504 * @since 1.23
505 * @return bool
507 function wasSubmitted() {
508 return $this->mWasSubmitted;
512 * Set a callback to a function to do something with the form
513 * once it's been successfully validated.
515 * @param string $cb Function name. The function will be passed
516 * the output from HTMLForm::filterDataForSubmit, and must
517 * return Bool true on success, Bool false if no submission
518 * was attempted, or String HTML output to display on error.
520 * @return HTMLForm $this for chaining calls (since 1.20)
522 function setSubmitCallback( $cb ) {
523 $this->mSubmitCallback = $cb;
525 return $this;
529 * Set a message to display on a validation error.
531 * @param string|array $msg String or Array of valid inputs to wfMessage()
532 * (so each entry can be either a String or Array)
534 * @return HTMLForm $this for chaining calls (since 1.20)
536 function setValidationErrorMessage( $msg ) {
537 $this->mValidationErrorMessage = $msg;
539 return $this;
543 * Set the introductory message, overwriting any existing message.
545 * @param string $msg Complete text of message to display
547 * @return HTMLForm $this for chaining calls (since 1.20)
549 function setIntro( $msg ) {
550 $this->setPreText( $msg );
552 return $this;
556 * Set the introductory message, overwriting any existing message.
557 * @since 1.19
559 * @param string $msg Complete text of message to display
561 * @return HTMLForm $this for chaining calls (since 1.20)
563 function setPreText( $msg ) {
564 $this->mPre = $msg;
566 return $this;
570 * Add introductory text.
572 * @param string $msg Complete text of message to display
574 * @return HTMLForm $this for chaining calls (since 1.20)
576 function addPreText( $msg ) {
577 $this->mPre .= $msg;
579 return $this;
583 * Add header text, inside the form.
585 * @param string $msg Complete text of message to display
586 * @param string $section The section to add the header to
588 * @return HTMLForm $this for chaining calls (since 1.20)
590 function addHeaderText( $msg, $section = null ) {
591 if ( is_null( $section ) ) {
592 $this->mHeader .= $msg;
593 } else {
594 if ( !isset( $this->mSectionHeaders[$section] ) ) {
595 $this->mSectionHeaders[$section] = '';
597 $this->mSectionHeaders[$section] .= $msg;
600 return $this;
604 * Set header text, inside the form.
605 * @since 1.19
607 * @param string $msg Complete text of message to display
608 * @param string $section The section to add the header to
610 * @return HTMLForm $this for chaining calls (since 1.20)
612 function setHeaderText( $msg, $section = null ) {
613 if ( is_null( $section ) ) {
614 $this->mHeader = $msg;
615 } else {
616 $this->mSectionHeaders[$section] = $msg;
619 return $this;
623 * Add footer text, inside the form.
625 * @param string $msg complete text of message to display
626 * @param string $section The section to add the footer text to
628 * @return HTMLForm $this for chaining calls (since 1.20)
630 function addFooterText( $msg, $section = null ) {
631 if ( is_null( $section ) ) {
632 $this->mFooter .= $msg;
633 } else {
634 if ( !isset( $this->mSectionFooters[$section] ) ) {
635 $this->mSectionFooters[$section] = '';
637 $this->mSectionFooters[$section] .= $msg;
640 return $this;
644 * Set footer text, inside the form.
645 * @since 1.19
647 * @param string $msg Complete text of message to display
648 * @param string $section The section to add the footer text to
650 * @return HTMLForm $this for chaining calls (since 1.20)
652 function setFooterText( $msg, $section = null ) {
653 if ( is_null( $section ) ) {
654 $this->mFooter = $msg;
655 } else {
656 $this->mSectionFooters[$section] = $msg;
659 return $this;
663 * Add text to the end of the display.
665 * @param string $msg Complete text of message to display
667 * @return HTMLForm $this for chaining calls (since 1.20)
669 function addPostText( $msg ) {
670 $this->mPost .= $msg;
672 return $this;
676 * Set text at the end of the display.
678 * @param string $msg Complete text of message to display
680 * @return HTMLForm $this for chaining calls (since 1.20)
682 function setPostText( $msg ) {
683 $this->mPost = $msg;
685 return $this;
689 * Add a hidden field to the output
691 * @param string $name Field name. This will be used exactly as entered
692 * @param string $value Field value
693 * @param array $attribs
695 * @return HTMLForm $this for chaining calls (since 1.20)
697 public function addHiddenField( $name, $value, $attribs = array() ) {
698 $attribs += array( 'name' => $name );
699 $this->mHiddenFields[] = array( $value, $attribs );
701 return $this;
705 * Add an array of hidden fields to the output
707 * @since 1.22
709 * @param array $fields Associative array of fields to add;
710 * mapping names to their values
712 * @return HTMLForm $this for chaining calls
714 public function addHiddenFields( array $fields ) {
715 foreach ( $fields as $name => $value ) {
716 $this->mHiddenFields[] = array( $value, array( 'name' => $name ) );
719 return $this;
723 * Add a button to the form
725 * @param string $name Field name.
726 * @param string $value Field value
727 * @param string $id DOM id for the button (default: null)
728 * @param array $attribs
730 * @return HTMLForm $this for chaining calls (since 1.20)
732 public function addButton( $name, $value, $id = null, $attribs = null ) {
733 $this->mButtons[] = compact( 'name', 'value', 'id', 'attribs' );
735 return $this;
739 * Display the form (sending to the context's OutputPage object), with an
740 * appropriate error message or stack of messages, and any validation errors, etc.
742 * @attention You should call prepareForm() before calling this function.
743 * Moreover, when doing method chaining this should be the very last method
744 * call just after prepareForm().
746 * @param mixed $submitResult Mixed output from HTMLForm::trySubmit()
748 * @return Nothing, should be last call
750 function displayForm( $submitResult ) {
751 $this->getOutput()->addHTML( $this->getHTML( $submitResult ) );
755 * Returns the raw HTML generated by the form
757 * @param mixed $submitResult Mixed output from HTMLForm::trySubmit()
759 * @return string
761 function getHTML( $submitResult ) {
762 # For good measure (it is the default)
763 $this->getOutput()->preventClickjacking();
764 $this->getOutput()->addModules( 'mediawiki.htmlform' );
765 if ( $this->isVForm() ) {
766 $this->getOutput()->addModuleStyles( array(
767 'mediawiki.ui',
768 'mediawiki.ui.button',
769 ) );
770 // @todo Should vertical form set setWrapperLegend( false )
771 // to hide ugly fieldsets?
774 $html = ''
775 . $this->getErrors( $submitResult )
776 . $this->mHeader
777 . $this->getBody()
778 . $this->getHiddenFields()
779 . $this->getButtons()
780 . $this->mFooter;
782 $html = $this->wrapForm( $html );
784 return '' . $this->mPre . $html . $this->mPost;
788 * Wrap the form innards in an actual "<form>" element
790 * @param string $html HTML contents to wrap.
792 * @return string Wrapped HTML.
794 function wrapForm( $html ) {
796 # Include a <fieldset> wrapper for style, if requested.
797 if ( $this->mWrapperLegend !== false ) {
798 $html = Xml::fieldset( $this->mWrapperLegend, $html );
800 # Use multipart/form-data
801 $encType = $this->mUseMultipart
802 ? 'multipart/form-data'
803 : 'application/x-www-form-urlencoded';
804 # Attributes
805 $attribs = array(
806 'action' => $this->getAction(),
807 'method' => $this->getMethod(),
808 'class' => array( 'visualClear' ),
809 'enctype' => $encType,
811 if ( !empty( $this->mId ) ) {
812 $attribs['id'] = $this->mId;
815 if ( $this->isVForm() ) {
816 array_push( $attribs['class'], 'mw-ui-vform', 'mw-ui-container' );
819 return Html::rawElement( 'form', $attribs, $html );
823 * Get the hidden fields that should go inside the form.
824 * @return string HTML.
826 function getHiddenFields() {
827 global $wgArticlePath;
829 $html = '';
830 if ( $this->getMethod() == 'post' ) {
831 $html .= Html::hidden(
832 'wpEditToken',
833 $this->getUser()->getEditToken(),
834 array( 'id' => 'wpEditToken' )
835 ) . "\n";
836 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
839 if ( strpos( $wgArticlePath, '?' ) !== false && $this->getMethod() == 'get' ) {
840 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
843 foreach ( $this->mHiddenFields as $data ) {
844 list( $value, $attribs ) = $data;
845 $html .= Html::hidden( $attribs['name'], $value, $attribs ) . "\n";
848 return $html;
852 * Get the submit and (potentially) reset buttons.
853 * @return string HTML.
855 function getButtons() {
856 $buttons = '';
858 if ( $this->mShowSubmit ) {
859 $attribs = array();
861 if ( isset( $this->mSubmitID ) ) {
862 $attribs['id'] = $this->mSubmitID;
865 if ( isset( $this->mSubmitName ) ) {
866 $attribs['name'] = $this->mSubmitName;
869 if ( isset( $this->mSubmitTooltip ) ) {
870 $attribs += Linker::tooltipAndAccesskeyAttribs( $this->mSubmitTooltip );
873 $attribs['class'] = array( 'mw-htmlform-submit' );
875 if ( $this->isVForm() ) {
876 // mw-ui-block is necessary because the buttons aren't necessarily in an
877 // immediate child div of the vform.
878 // @todo Let client specify if the primary submit button is progressive or destructive
879 array_push(
880 $attribs['class'],
881 'mw-ui-button',
882 'mw-ui-big',
883 'mw-ui-constructive',
884 'mw-ui-block'
888 $buttons .= Xml::submitButton( $this->getSubmitText(), $attribs ) . "\n";
891 if ( $this->mShowReset ) {
892 $buttons .= Html::element(
893 'input',
894 array(
895 'type' => 'reset',
896 'value' => $this->msg( 'htmlform-reset' )->text()
898 ) . "\n";
901 foreach ( $this->mButtons as $button ) {
902 $attrs = array(
903 'type' => 'submit',
904 'name' => $button['name'],
905 'value' => $button['value']
908 if ( $button['attribs'] ) {
909 $attrs += $button['attribs'];
912 if ( isset( $button['id'] ) ) {
913 $attrs['id'] = $button['id'];
916 $buttons .= Html::element( 'input', $attrs ) . "\n";
919 $html = Html::rawElement( 'span',
920 array( 'class' => 'mw-htmlform-submit-buttons' ), "\n$buttons" ) . "\n";
922 // Buttons are top-level form elements in table and div layouts,
923 // but vform wants all elements inside divs to get spaced-out block
924 // styling.
925 if ( $this->mShowSubmit && $this->isVForm() ) {
926 $html = Html::rawElement( 'div', null, "\n$html" ) . "\n";
929 return $html;
933 * Get the whole body of the form.
934 * @return string
936 function getBody() {
937 return $this->displaySection( $this->mFieldTree, $this->mTableId );
941 * Format and display an error message stack.
943 * @param string|array|Status $errors
945 * @return string
947 function getErrors( $errors ) {
948 if ( $errors instanceof Status ) {
949 if ( $errors->isOK() ) {
950 $errorstr = '';
951 } else {
952 $errorstr = $this->getOutput()->parse( $errors->getWikiText() );
954 } elseif ( is_array( $errors ) ) {
955 $errorstr = $this->formatErrors( $errors );
956 } else {
957 $errorstr = $errors;
960 return $errorstr
961 ? Html::rawElement( 'div', array( 'class' => 'error' ), $errorstr )
962 : '';
966 * Format a stack of error messages into a single HTML string
968 * @param array $errors of message keys/values
970 * @return string HTML, a "<ul>" list of errors
972 public static function formatErrors( $errors ) {
973 $errorstr = '';
975 foreach ( $errors as $error ) {
976 if ( is_array( $error ) ) {
977 $msg = array_shift( $error );
978 } else {
979 $msg = $error;
980 $error = array();
983 $errorstr .= Html::rawElement(
984 'li',
985 array(),
986 wfMessage( $msg, $error )->parse()
990 $errorstr = Html::rawElement( 'ul', array(), $errorstr );
992 return $errorstr;
996 * Set the text for the submit button
998 * @param string $t plaintext.
1000 * @return HTMLForm $this for chaining calls (since 1.20)
1002 function setSubmitText( $t ) {
1003 $this->mSubmitText = $t;
1005 return $this;
1009 * Set the text for the submit button to a message
1010 * @since 1.19
1012 * @param string $msg Message key
1014 * @return HTMLForm $this for chaining calls (since 1.20)
1016 public function setSubmitTextMsg( $msg ) {
1017 $this->setSubmitText( $this->msg( $msg )->text() );
1019 return $this;
1023 * Get the text for the submit button, either customised or a default.
1024 * @return string
1026 function getSubmitText() {
1027 return $this->mSubmitText
1028 ? $this->mSubmitText
1029 : $this->msg( 'htmlform-submit' )->text();
1033 * @param string $name Submit button name
1035 * @return HTMLForm $this for chaining calls (since 1.20)
1037 public function setSubmitName( $name ) {
1038 $this->mSubmitName = $name;
1040 return $this;
1044 * @param string $name Tooltip for the submit button
1046 * @return HTMLForm $this for chaining calls (since 1.20)
1048 public function setSubmitTooltip( $name ) {
1049 $this->mSubmitTooltip = $name;
1051 return $this;
1055 * Set the id for the submit button.
1057 * @param string $t
1059 * @todo FIXME: Integrity of $t is *not* validated
1060 * @return HTMLForm $this for chaining calls (since 1.20)
1062 function setSubmitID( $t ) {
1063 $this->mSubmitID = $t;
1065 return $this;
1069 * Stop a default submit button being shown for this form. This implies that an
1070 * alternate submit method must be provided manually.
1072 * @since 1.22
1074 * @param bool $suppressSubmit Set to false to re-enable the button again
1076 * @return HTMLForm $this for chaining calls
1078 function suppressDefaultSubmit( $suppressSubmit = true ) {
1079 $this->mShowSubmit = !$suppressSubmit;
1081 return $this;
1085 * Set the id of the \<table\> or outermost \<div\> element.
1087 * @since 1.22
1089 * @param string $id New value of the id attribute, or "" to remove
1091 * @return HTMLForm $this for chaining calls
1093 public function setTableId( $id ) {
1094 $this->mTableId = $id;
1096 return $this;
1100 * @param string $id DOM id for the form
1102 * @return HTMLForm $this for chaining calls (since 1.20)
1104 public function setId( $id ) {
1105 $this->mId = $id;
1107 return $this;
1111 * Prompt the whole form to be wrapped in a "<fieldset>", with
1112 * this text as its "<legend>" element.
1114 * @param string|bool $legend HTML to go inside the "<legend>" element, or
1115 * false for no <legend>
1116 * Will be escaped
1118 * @return HTMLForm $this for chaining calls (since 1.20)
1120 public function setWrapperLegend( $legend ) {
1121 $this->mWrapperLegend = $legend;
1123 return $this;
1127 * Prompt the whole form to be wrapped in a "<fieldset>", with
1128 * this message as its "<legend>" element.
1129 * @since 1.19
1131 * @param string $msg Message key
1133 * @return HTMLForm $this for chaining calls (since 1.20)
1135 public function setWrapperLegendMsg( $msg ) {
1136 $this->setWrapperLegend( $this->msg( $msg )->text() );
1138 return $this;
1142 * Set the prefix for various default messages
1143 * @todo Currently only used for the "<fieldset>" legend on forms
1144 * with multiple sections; should be used elsewhere?
1146 * @param string $p
1148 * @return HTMLForm $this for chaining calls (since 1.20)
1150 function setMessagePrefix( $p ) {
1151 $this->mMessagePrefix = $p;
1153 return $this;
1157 * Set the title for form submission
1159 * @param Title $t Title of page the form is on/should be posted to
1161 * @return HTMLForm $this for chaining calls (since 1.20)
1163 function setTitle( $t ) {
1164 $this->mTitle = $t;
1166 return $this;
1170 * Get the title
1171 * @return Title
1173 function getTitle() {
1174 return $this->mTitle === false
1175 ? $this->getContext()->getTitle()
1176 : $this->mTitle;
1180 * Set the method used to submit the form
1182 * @param string $method
1184 * @return HTMLForm $this for chaining calls (since 1.20)
1186 public function setMethod( $method = 'post' ) {
1187 $this->mMethod = $method;
1189 return $this;
1192 public function getMethod() {
1193 return $this->mMethod;
1197 * @todo Document
1199 * @param array[]|HTMLFormField[] $fields Array of fields (either arrays or
1200 * objects).
1201 * @param string $sectionName ID attribute of the "<table>" tag for this
1202 * section, ignored if empty.
1203 * @param string $fieldsetIDPrefix ID prefix for the "<fieldset>" tag of
1204 * each subsection, ignored if empty.
1205 * @param bool &$hasUserVisibleFields Whether the section had user-visible fields.
1207 * @return string
1209 public function displaySection( $fields,
1210 $sectionName = '',
1211 $fieldsetIDPrefix = '',
1212 &$hasUserVisibleFields = false ) {
1213 $displayFormat = $this->getDisplayFormat();
1215 $html = '';
1216 $subsectionHtml = '';
1217 $hasLabel = false;
1219 switch ( $displayFormat ) {
1220 case 'table':
1221 $getFieldHtmlMethod = 'getTableRow';
1222 break;
1223 case 'vform':
1224 // Close enough to a div.
1225 $getFieldHtmlMethod = 'getDiv';
1226 break;
1227 default:
1228 $getFieldHtmlMethod = 'get' . ucfirst( $displayFormat );
1231 foreach ( $fields as $key => $value ) {
1232 if ( $value instanceof HTMLFormField ) {
1233 $v = empty( $value->mParams['nodata'] )
1234 ? $this->mFieldData[$key]
1235 : $value->getDefault();
1236 $html .= $value->$getFieldHtmlMethod( $v );
1238 $labelValue = trim( $value->getLabel() );
1239 if ( $labelValue != '&#160;' && $labelValue !== '' ) {
1240 $hasLabel = true;
1243 if ( get_class( $value ) !== 'HTMLHiddenField' &&
1244 get_class( $value ) !== 'HTMLApiField'
1246 $hasUserVisibleFields = true;
1248 } elseif ( is_array( $value ) ) {
1249 $subsectionHasVisibleFields = false;
1250 $section =
1251 $this->displaySection( $value,
1252 "mw-htmlform-$key",
1253 "$fieldsetIDPrefix$key-",
1254 $subsectionHasVisibleFields );
1255 $legend = null;
1257 if ( $subsectionHasVisibleFields === true ) {
1258 // Display the section with various niceties.
1259 $hasUserVisibleFields = true;
1261 $legend = $this->getLegend( $key );
1263 if ( isset( $this->mSectionHeaders[$key] ) ) {
1264 $section = $this->mSectionHeaders[$key] . $section;
1266 if ( isset( $this->mSectionFooters[$key] ) ) {
1267 $section .= $this->mSectionFooters[$key];
1270 $attributes = array();
1271 if ( $fieldsetIDPrefix ) {
1272 $attributes['id'] = Sanitizer::escapeId( "$fieldsetIDPrefix$key" );
1274 $subsectionHtml .= Xml::fieldset( $legend, $section, $attributes ) . "\n";
1275 } else {
1276 // Just return the inputs, nothing fancy.
1277 $subsectionHtml .= $section;
1282 if ( $displayFormat !== 'raw' ) {
1283 $classes = array();
1285 if ( !$hasLabel ) { // Avoid strange spacing when no labels exist
1286 $classes[] = 'mw-htmlform-nolabel';
1289 $attribs = array(
1290 'class' => implode( ' ', $classes ),
1293 if ( $sectionName ) {
1294 $attribs['id'] = Sanitizer::escapeId( $sectionName );
1297 if ( $displayFormat === 'table' ) {
1298 $html = Html::rawElement( 'table',
1299 $attribs,
1300 Html::rawElement( 'tbody', array(), "\n$html\n" ) ) . "\n";
1301 } elseif ( $displayFormat === 'div' || $displayFormat === 'vform' ) {
1302 $html = Html::rawElement( 'div', $attribs, "\n$html\n" );
1306 if ( $this->mSubSectionBeforeFields ) {
1307 return $subsectionHtml . "\n" . $html;
1308 } else {
1309 return $html . "\n" . $subsectionHtml;
1314 * Construct the form fields from the Descriptor array
1316 function loadData() {
1317 $fieldData = array();
1319 foreach ( $this->mFlatFields as $fieldname => $field ) {
1320 if ( !empty( $field->mParams['nodata'] ) ) {
1321 continue;
1322 } elseif ( !empty( $field->mParams['disabled'] ) ) {
1323 $fieldData[$fieldname] = $field->getDefault();
1324 } else {
1325 $fieldData[$fieldname] = $field->loadDataFromRequest( $this->getRequest() );
1329 # Filter data.
1330 foreach ( $fieldData as $name => &$value ) {
1331 $field = $this->mFlatFields[$name];
1332 $value = $field->filter( $value, $this->mFlatFields );
1335 $this->mFieldData = $fieldData;
1339 * Stop a reset button being shown for this form
1341 * @param bool $suppressReset Set to false to re-enable the button again
1343 * @return HTMLForm $this for chaining calls (since 1.20)
1345 function suppressReset( $suppressReset = true ) {
1346 $this->mShowReset = !$suppressReset;
1348 return $this;
1352 * Overload this if you want to apply special filtration routines
1353 * to the form as a whole, after it's submitted but before it's
1354 * processed.
1356 * @param array $data
1358 * @return
1360 function filterDataForSubmit( $data ) {
1361 return $data;
1365 * Get a string to go in the "<legend>" of a section fieldset.
1366 * Override this if you want something more complicated.
1368 * @param string $key
1370 * @return string
1372 public function getLegend( $key ) {
1373 return $this->msg( "{$this->mMessagePrefix}-$key" )->text();
1377 * Set the value for the action attribute of the form.
1378 * When set to false (which is the default state), the set title is used.
1380 * @since 1.19
1382 * @param string|bool $action
1384 * @return HTMLForm $this for chaining calls (since 1.20)
1386 public function setAction( $action ) {
1387 $this->mAction = $action;
1389 return $this;
1393 * Get the value for the action attribute of the form.
1395 * @since 1.22
1397 * @return string
1399 public function getAction() {
1400 global $wgScript, $wgArticlePath;
1402 // If an action is alredy provided, return it
1403 if ( $this->mAction !== false ) {
1404 return $this->mAction;
1407 // Check whether we are in GET mode and $wgArticlePath contains a "?"
1408 // meaning that getLocalURL() would return something like "index.php?title=...".
1409 // As browser remove the query string before submitting GET forms,
1410 // it means that the title would be lost. In such case use $wgScript instead
1411 // and put title in an hidden field (see getHiddenFields()).
1412 if ( strpos( $wgArticlePath, '?' ) !== false && $this->getMethod() === 'get' ) {
1413 return $wgScript;
1416 return $this->getTitle()->getLocalURL();