41 public static function element( $element, $attribs =
null, $contents =
'',
44 $out =
'<' . $element;
45 if ( $attribs !==
null ) {
46 $out .= self::expandAttributes( $attribs );
48 if ( $contents ===
null ) {
50 } elseif ( $allowShortTag && $contents ===
'' ) {
53 $out .=
'>' . htmlspecialchars( $contents, ENT_NOQUOTES ) .
"</$element>";
69 if ( $attribs ===
null ) {
71 } elseif ( is_array( $attribs ) ) {
72 foreach ( $attribs as $name => $val ) {
73 $out .=
" {$name}=\"" . Sanitizer::encodeAttribute( $val ) .
'"';
77 throw new MWException(
'Expected attribute array, got something else in ' . __METHOD__ );
92 public static function elementClean( $element, $attribs = [], $contents =
'' ) {
94 $attribs = array_map( [ UtfNormal\Validator::class,
'cleanUp' ], $attribs );
98 MediaWikiServices::getInstance()->getContentLanguage()->normalize( $contents );
100 return self::element( $element, $attribs, $contents );
111 return '<' . $element . self::expandAttributes( $attribs ) .
'>';
120 return "</$element>";
132 public static function tags( $element, $attribs, $contents ) {
133 return self::openElement( $element, $attribs ) . $contents .
"</$element>";
145 public static function monthSelector( $selected =
'', $allmonths =
null, $id =
'month' ) {
149 if ( $selected ===
null ) {
152 $data =
new XmlSelect(
'month', $id, $selected );
154 if ( $allmonths !==
null ) {
155 $options[
wfMessage(
'monthsall' )->text()] = $allmonths;
157 for ( $i = 1; $i < 13; $i++ ) {
158 $options[
$wgLang->getMonthName( $i )] = $i;
160 $data->addOptions( $options );
161 $data->setAttribute(
'class',
'mw-month-selector' );
162 return $data->getHTML();
172 # Offset overrides year/month selection
173 if ( $month && $month !== -1 ) {
174 $encMonth = intval( $month );
179 $encYear = intval( $year );
180 } elseif ( $encMonth ) {
181 $timestamp = MWTimestamp::getInstance();
182 $thisMonth = intval( $timestamp->format(
'n' ) );
183 $thisYear = intval( $timestamp->format(
'Y' ) );
184 if ( intval( $encMonth ) > $thisMonth ) {
187 $encYear = $thisYear;
191 $inputAttribs = [
'id' =>
'year',
'maxlength' => 4,
'size' => 7 ];
192 return self::label(
wfMessage(
'year' )->text(),
'year' ) .
' ' .
193 Html::input(
'year', $encYear,
'number', $inputAttribs ) .
' ' .
194 self::label(
wfMessage(
'month' )->text(),
'month' ) .
' ' .
195 self::monthSelector( $encMonth, -1 );
209 $inLanguage =
null, $overrideAttrs = [],
Message $msg =
null
213 $include = $customisedOnly ?
'mwfile' :
'mw';
214 $languages = MediaWikiServices::getInstance()
215 ->getLanguageNameUtils()
216 ->getLanguageNames( $inLanguage, $include );
231 $selected = isset( $languages[$selected] ) ? $selected :
$wgLanguageCode;
233 foreach ( $languages as $code => $name ) {
234 $options .= self::option(
"$code - $name", $code, $code == $selected ) .
"\n";
237 $attrs = [
'id' =>
'wpUserLanguage',
'name' =>
'wpUserLanguage' ];
238 $attrs = array_merge( $attrs, $overrideAttrs );
240 if ( $msg ===
null ) {
244 self::label( $msg->text(), $attrs[
'id'] ),
245 self::tags(
'select', $attrs, $options )
256 public static function span( $text, $class, $attribs = [] ) {
257 return self::element(
'span', [
'class' => $class ] + $attribs, $text );
268 public static function wrapClass( $text, $class, $tag =
'span', $attribs = [] ) {
269 return self::tags( $tag, [
'class' => $class ] + $attribs, $text );
280 public static function input( $name, $size =
false, $value =
false, $attribs = [] ) {
281 $attributes = [
'name' => $name ];
284 $attributes[
'size'] = $size;
287 if ( $value !==
false ) {
288 $attributes[
'value'] = $value;
291 return self::element(
'input',
292 Html::getTextInputAttributes( $attributes + $attribs ) );
303 public static function password( $name, $size =
false, $value =
false,
306 return self::input( $name, $size, $value,
307 array_merge( $attribs, [
'type' =>
'password' ] ) );
318 public static function attrib( $name, $present =
true ) {
319 return $present ? [ $name => $name ] : [];
329 public static function check( $name, $checked =
false, $attribs = [] ) {
330 return self::element(
'input', array_merge(
333 'type' =>
'checkbox',
335 self::attrib(
'checked', $checked ),
347 public static function radio( $name, $value, $checked =
false, $attribs = [] ) {
348 return self::element(
'input', [
351 'value' => $value ] + self::attrib(
'checked', $checked ) + $attribs );
364 public static function label( $label, $id, $attribs = [] ) {
365 $a = [
'for' => $id ];
367 foreach ( [
'class',
'title' ] as $attr ) {
368 if ( isset( $attribs[$attr] ) ) {
369 $a[$attr] = $attribs[$attr];
373 return self::element(
'label', $a, $label );
386 public static function inputLabel( $label, $name, $id, $size =
false,
387 $value =
false, $attribs = []
389 list( $label, $input ) = self::inputLabelSep( $label, $name, $id, $size, $value, $attribs );
390 return $label .
"\u{00A0}" . $input;
406 $value =
false, $attribs = []
409 self::label( $label, $id, $attribs ),
410 self::input( $name, $size, $value, [
'id' => $id ] + $attribs )
425 public static function checkLabel( $label, $name, $id, $checked =
false, $attribs = [] ) {
427 $chkLabel = self::check( $name, $checked, [
'id' => $id ] + $attribs ) .
429 self::label( $label, $id, $attribs );
432 $chkLabel = self::openElement(
'div', [
'class' =>
'mw-ui-checkbox' ] ) .
433 $chkLabel . self::closeElement(
'div' );
450 public static function radioLabel( $label, $name, $value, $id,
451 $checked =
false, $attribs = []
453 return self::radio( $name, $value, $checked, [
'id' => $id ] + $attribs ) .
455 self::label( $label, $id, $attribs );
475 $baseAttrs[
'class'] =
'mw-ui-button mw-ui-progressive';
478 $attribs += $baseAttrs;
479 return Html::element(
'input', $attribs );
490 public static function option( $text, $value =
null, $selected =
false,
492 if ( $value !==
null ) {
493 $attribs[
'value'] = $value;
496 $attribs[
'selected'] =
'selected';
498 return Html::element(
'option', $attribs, $text );
514 public static function listDropDown( $name =
'', $list =
'', $other =
'',
515 $selected =
'', $class =
'', $tabindex =
null
517 $options = self::listDropDownOptions( $list, [
'other' => $other ] );
519 $xmlSelect =
new XmlSelect( $name, $name, $selected );
520 $xmlSelect->addOptions( $options );
523 $xmlSelect->setAttribute(
'class', $class );
526 $xmlSelect->setAttribute(
'tabindex', $tabindex );
529 return $xmlSelect->getHTML();
548 if ( isset( $params[
'other'] ) ) {
549 $options[ $params[
'other'] ] =
'other';
553 foreach ( explode(
"\n", $list ) as $option ) {
554 $value = trim( $option );
555 if ( $value ==
'' ) {
558 if ( substr( $value, 0, 1 ) ==
'*' && substr( $value, 1, 1 ) !=
'*' ) {
559 # A new group is starting...
560 $value = trim( substr( $value, 1 ) );
561 if ( $value !==
'' &&
563 ( !isset( $params[
'other'] ) || $value !== $params[
'other'] )
569 } elseif ( substr( $value, 0, 2 ) ==
'**' ) {
571 $opt = trim( substr( $value, 2 ) );
572 if ( $optgroup ===
false ) {
573 $options[$opt] = $opt;
575 $options[$optgroup][$opt] = $opt;
578 # groupless reason list
580 $options[$option] = $option;
598 foreach ( $options as $text => $value ) {
599 if ( is_array( $value ) ) {
600 $optionsOoui[] = [
'optgroup' => (string)$text ];
601 foreach ( $value as $text2 => $value2 ) {
602 $optionsOoui[] = [
'data' => (string)$value2,
'label' => (
string)$text2 ];
605 $optionsOoui[] = [
'data' => (string)$value,
'label' => (
string)$text ];
624 $s = self::openElement(
'fieldset', $attribs ) .
"\n";
627 $s .= self::element(
'legend',
null, $legend ) .
"\n";
632 $s .= self::closeElement(
'fieldset' ) .
"\n";
650 return self::element(
'textarea',
651 Html::getTextInputAttributes(
675 return $value->value;
677 return FormatJson::encode( $value, $pretty, FormatJson::UTF8_OK );
692 foreach (
$args as &$arg ) {
693 $arg = self::encodeJsVar( $arg, $pretty );
694 if ( $arg ===
false ) {
699 return "$name(" . ( $pretty
700 ? (
' ' . implode(
', ',
$args ) .
' ' )
701 : implode(
',',
$args )
717 $parser = xml_parser_create(
"UTF-8" );
719 # case folding violates XML standard, turn it off
720 xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING,
false );
722 if ( !xml_parse( $parser, $text,
true ) ) {
727 xml_parser_free( $parser );
731 xml_parser_free( $parser );
746 Sanitizer::hackDocType() .
751 return self::isWellFormed( $html );
764 [
'"',
'>',
'<' ],
779 public static function buildForm( $fields, $submitLabel =
null, $submitAttribs = [] ) {
781 $form .=
"<table><tbody>";
783 foreach ( $fields as $labelmsg => $input ) {
784 $id =
"mw-$labelmsg";
785 $form .= self::openElement(
'tr', [
'id' => $id ] );
791 $form .= self::tags(
'td', [
'class' =>
'mw-label' ],
wfMessage( $labelmsg )->parse() );
792 $form .= self::openElement(
'td', [
'class' =>
'mw-input' ] )
793 . $input . self::closeElement(
'td' );
794 $form .= self::closeElement(
'tr' );
797 if ( $submitLabel ) {
798 $form .= self::openElement(
'tr' );
799 $form .= self::tags(
'td', [],
'' );
800 $form .= self::openElement(
'td', [
'class' =>
'mw-submit' ] )
801 . self::submitButton(
wfMessage( $submitLabel )->text(), $submitAttribs )
802 . self::closeElement(
'td' );
803 $form .= self::closeElement(
'tr' );
806 $form .=
"</tbody></table>";
817 public static function buildTable( $rows, $attribs = [], $headers =
null ) {
818 $s = self::openElement(
'table', $attribs );
820 if ( is_array( $headers ) ) {
821 $s .= self::openElement(
'thead', $attribs );
823 foreach ( $headers as $id =>
$header ) {
826 if ( is_string( $id ) ) {
827 $attribs[
'id'] = $id;
830 $s .= self::element(
'th', $attribs,
$header );
832 $s .= self::closeElement(
'thead' );
835 foreach ( $rows as $id => $row ) {
838 if ( is_string( $id ) ) {
839 $attribs[
'id'] = $id;
842 $s .= self::buildTableRow( $attribs, $row );
845 $s .= self::closeElement(
'table' );
857 $s = self::openElement(
'tr', $attribs );
859 foreach ( $cells as $id => $cell ) {
862 if ( is_string( $id ) ) {
863 $attribs[
'id'] = $id;
866 $s .= self::element(
'td', $attribs, $cell );
869 $s .= self::closeElement(
'tr' );
$wgLanguageCode
Site language code.
$wgUseMediaWikiUIEverywhere
Temporary variable that applies MediaWiki UI wherever it can be supported.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
The Message class deals with fetching and processing of interface message into a variety of formats.
A wrapper class which causes Xml::encodeJsVar() and Xml::encodeJsCall() to interpret a given string a...
Class for generating HTML <select> or <datalist> elements.
Module of static functions for generating XML.
static password( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML password input field.
static closeElement( $element)
Shortcut to close an XML element.
static textarea( $name, $content, $cols=40, $rows=5, $attribs=[])
Shortcut for creating textareas.
static inputLabelSep( $label, $name, $id, $size=false, $value=false, $attribs=[])
Same as Xml::inputLabel() but return input and label in an array.
static isWellFormed( $text)
Check if a string is well-formed XML.
static listDropDownOptions( $list, $params=[])
Build options for a drop-down box from a textual list.
static encodeJsVar( $value, $pretty=false)
Encode a variable of arbitrary type to JavaScript.
static listDropDownOptionsOoui( $options)
Convert options for a drop-down box into a format accepted by OOUI\DropdownInputWidget etc.
static isWellFormedXmlFragment( $text)
Check if a string is a well-formed XML fragment.
static check( $name, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox.
static dateMenu( $year, $month)
static buildForm( $fields, $submitLabel=null, $submitAttribs=[])
Generate a form (without the opening form element).
static attrib( $name, $present=true)
Internal function for use in checkboxes and radio buttons and such.
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
static openElement( $element, $attribs=null)
This opens an XML element.
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
static wrapClass( $text, $class, $tag='span', $attribs=[])
Shortcut to make a specific element with a class attribute.
static buildTable( $rows, $attribs=[], $headers=null)
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
static option( $text, $value=null, $selected=false, $attribs=[])
Convenience function to build an HTML drop-down list item.
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
static inputLabel( $label, $name, $id, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field with a label.
static languageSelector( $selected, $customisedOnly=true, $inLanguage=null, $overrideAttrs=[], Message $msg=null)
Construct a language selector appropriate for use in a form or preferences.
static expandAttributes( $attribs)
Given an array of ('attributename' => 'value'), it generates the code to set the XML attributes : att...
static span( $text, $class, $attribs=[])
Shortcut to make a span element.
static escapeTagsOnly( $in)
Replace " > and < with their respective HTML entities ( ", >, <)
static tags( $element, $attribs, $contents)
Same as Xml::element(), but does not escape contents.
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
static radio( $name, $value, $checked=false, $attribs=[])
Convenience function to build an HTML radio button.
static buildTableRow( $attribs, $cells)
Build a row for a table.
static radioLabel( $label, $name, $value, $id, $checked=false, $attribs=[])
Convenience function to build an HTML radio button with a label.
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
static listDropDown( $name='', $list='', $other='', $selected='', $class='', $tabindex=null)
Build a drop-down box from a textual list.
static monthSelector( $selected='', $allmonths=null, $id='month')
Create a date selector.
static fieldset( $legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
static elementClean( $element, $attribs=[], $contents='')
Format an XML element as with self::element(), but run text through the content language's normalize(...
foreach( $mmfl['setupFiles'] as $fileName) if($queue) if(empty( $mmfl['quiet'])) $s