50 public static function element( $element, $attribs =
null, $contents =
'',
53 $out =
'<' . $element;
54 if ( $attribs !==
null ) {
55 $out .= self::expandAttributes( $attribs );
57 if ( $contents ===
null ) {
59 } elseif ( $allowShortTag && $contents ===
'' ) {
62 $out .=
'>' . htmlspecialchars( $contents, ENT_NOQUOTES ) .
"</$element>";
76 if ( $attribs ===
null ) {
80 foreach ( $attribs as $name => $val ) {
81 $out .=
" {$name}=\"" . Sanitizer::encodeAttribute( $val ) .
'"';
97 public static function elementClean( $element, $attribs = [], $contents =
'' ) {
99 $attribs = array_map( [ UtfNormal\Validator::class,
'cleanUp' ], $attribs );
103 MediaWikiServices::getInstance()->getContentLanguage()->normalize( $contents );
105 return self::element( $element, $attribs, $contents );
116 return '<' . $element . self::expandAttributes( $attribs ) .
'>';
125 return "</$element>";
141 public static function tags( $element, $attribs, $contents ) {
142 return self::openElement( $element, $attribs ) . $contents .
"</$element>";
154 public static function monthSelector( $selected =
'', $allmonths =
null, $id =
'month' ) {
158 $data =
new XmlSelect(
'month', $id, $selected ??
'' );
160 if ( $allmonths !==
null ) {
161 $options[
wfMessage(
'monthsall' )->text()] = $allmonths;
163 for ( $i = 1; $i < 13; $i++ ) {
164 $options[
$wgLang->getMonthName( $i )] = $i;
166 $data->addOptions( $options );
167 $data->setAttribute(
'class',
'mw-month-selector' );
168 return $data->getHTML();
178 # Offset overrides year/month selection
179 if ( $month && $month !== -1 ) {
180 $encMonth = intval( $month );
185 $encYear = intval( $year );
186 } elseif ( $encMonth ) {
187 $timestamp = MWTimestamp::getInstance();
188 $thisMonth = intval( $timestamp->format(
'n' ) );
189 $thisYear = intval( $timestamp->format(
'Y' ) );
190 if ( $encMonth > $thisMonth ) {
193 $encYear = $thisYear;
197 $inputAttribs = [
'id' =>
'year',
'maxlength' => 4,
'size' => 7 ];
198 return self::label(
wfMessage(
'year' )->text(),
'year' ) .
' ' .
199 Html::input(
'year', $encYear,
'number', $inputAttribs ) .
' ' .
200 self::label(
wfMessage(
'month' )->text(),
'month' ) .
' ' .
201 self::monthSelector( $encMonth,
'-1' );
215 $inLanguage =
null, $overrideAttrs = [],
Message $msg =
null
217 $languageCode = MediaWikiServices::getInstance()->getMainConfig()
218 ->get( MainConfigNames::LanguageCode );
220 $include = $customisedOnly ? LanguageNameUtils::SUPPORTED : LanguageNameUtils::DEFINED;
221 $languages = MediaWikiServices::getInstance()
222 ->getLanguageNameUtils()
223 ->getLanguageNames( $inLanguage, $include );
227 if ( !array_key_exists( $languageCode, $languages ) ) {
228 $languages[$languageCode] = $languageCode;
238 $selected = isset( $languages[$selected] ) ? $selected : $languageCode;
240 foreach ( $languages as $code => $name ) {
241 $options .= self::option(
"$code - $name", $code, $code == $selected ) .
"\n";
244 $attrs = [
'id' =>
'wpUserLanguage',
'name' =>
'wpUserLanguage' ];
245 $attrs = array_merge( $attrs, $overrideAttrs );
247 if ( $msg ===
null ) {
251 self::label( $msg->text(), $attrs[
'id'] ),
252 self::tags(
'select', $attrs, $options )
263 public static function span( $text, $class, $attribs = [] ) {
264 return self::element(
'span', [
'class' => $class ] + $attribs, $text );
275 public static function wrapClass( $text, $class, $tag =
'span', $attribs = [] ) {
276 return self::tags( $tag, [
'class' => $class ] + $attribs, $text );
287 public static function input( $name, $size =
false, $value =
false, $attribs = [] ) {
288 $attributes = [
'name' => $name ];
291 $attributes[
'size'] = $size;
294 if ( $value !==
false ) {
295 $attributes[
'value'] = $value;
298 return self::element(
'input',
299 Html::getTextInputAttributes( $attributes + $attribs ) );
310 public static function password( $name, $size =
false, $value =
false,
313 return self::input( $name, $size, $value,
314 array_merge( $attribs, [
'type' =>
'password' ] ) );
325 public static function attrib( $name, $present =
true ) {
326 return $present ? [ $name => $name ] : [];
336 public static function check( $name, $checked =
false, $attribs = [] ) {
337 return self::element(
'input', array_merge(
340 'type' =>
'checkbox',
342 self::attrib(
'checked', $checked ),
354 public static function radio( $name, $value, $checked =
false, $attribs = [] ) {
355 return self::element(
'input', [
358 'value' => $value ] + self::attrib(
'checked', $checked ) + $attribs );
371 public static function label( $label, $id, $attribs = [] ) {
372 $a = [
'for' => $id ];
374 foreach ( [
'class',
'title' ] as $attr ) {
375 if ( isset( $attribs[$attr] ) ) {
376 $a[$attr] = $attribs[$attr];
380 return self::element(
'label', $a, $label );
393 public static function inputLabel( $label, $name, $id, $size =
false,
394 $value =
false, $attribs = []
396 [ $label, $input ] = self::inputLabelSep( $label, $name, $id, $size, $value, $attribs );
397 return $label .
"\u{00A0}" . $input;
413 $value =
false, $attribs = []
416 self::label( $label, $id, $attribs ),
417 self::input( $name, $size, $value, [
'id' => $id ] + $attribs )
432 public static function checkLabel( $label, $name, $id, $checked =
false, $attribs = [] ) {
433 $useMediaWikiUIEverywhere = MediaWikiServices::getInstance()->getMainConfig()
434 ->get( MainConfigNames::UseMediaWikiUIEverywhere );
435 $chkLabel = self::check( $name, $checked, [
'id' => $id ] + $attribs ) .
437 self::label( $label, $id, $attribs );
439 if ( $useMediaWikiUIEverywhere ) {
440 $chkLabel = self::openElement(
'div', [
'class' =>
'mw-ui-checkbox' ] ) .
441 $chkLabel . self::closeElement(
'div' );
458 public static function radioLabel( $label, $name, $value, $id,
459 $checked =
false, $attribs = []
461 return self::radio( $name, $value, $checked, [
'id' => $id ] + $attribs ) .
463 self::label( $label, $id, $attribs );
474 $useMediaWikiUIEverywhere = MediaWikiServices::getInstance()->getMainConfig()
475 ->get( MainConfigNames::UseMediaWikiUIEverywhere );
483 if ( $useMediaWikiUIEverywhere ) {
484 $baseAttrs[
'class'] =
'mw-ui-button mw-ui-progressive';
487 $attribs += $baseAttrs;
488 return Html::element(
'input', $attribs );
499 public static function option( $text, $value =
null, $selected =
false,
501 if ( $value !==
null ) {
502 $attribs[
'value'] = $value;
505 $attribs[
'selected'] =
'selected';
507 return Html::element(
'option', $attribs, $text );
523 public static function listDropDown( $name =
'', $list =
'', $other =
'',
524 $selected =
'', $class =
'', $tabindex =
null
526 $options = self::listDropDownOptions( $list, [
'other' => $other ] );
528 $xmlSelect =
new XmlSelect( $name, $name, $selected );
529 $xmlSelect->addOptions( $options );
532 $xmlSelect->setAttribute(
'class', $class );
535 $xmlSelect->setAttribute(
'tabindex', $tabindex );
538 return $xmlSelect->getHTML();
557 if ( isset( $params[
'other'] ) ) {
558 $options[ $params[
'other'] ] =
'other';
562 foreach ( explode(
"\n", $list ) as $option ) {
563 $value = trim( $option );
564 if ( $value ==
'' ) {
567 if ( substr( $value, 0, 1 ) ==
'*' && substr( $value, 1, 1 ) !=
'*' ) {
568 # A new group is starting...
569 $value = trim( substr( $value, 1 ) );
570 if ( $value !==
'' &&
572 ( !isset( $params[
'other'] ) || $value !== $params[
'other'] )
578 } elseif ( substr( $value, 0, 2 ) ==
'**' ) {
580 $opt = trim( substr( $value, 2 ) );
581 if ( $optgroup ===
false ) {
582 $options[$opt] = $opt;
584 $options[$optgroup][$opt] = $opt;
587 # groupless reason list
589 $options[$option] = $option;
607 foreach ( $options as $text => $value ) {
608 if ( is_array( $value ) ) {
609 $optionsOoui[] = [
'optgroup' => (string)$text ];
610 foreach ( $value as $text2 => $value2 ) {
611 $optionsOoui[] = [
'data' => (string)$value2,
'label' => (
string)$text2 ];
614 $optionsOoui[] = [
'data' => (string)$value,
'label' => (
string)$text ];
633 $s = self::openElement(
'fieldset', $attribs ) .
"\n";
636 $s .= self::element(
'legend',
null, $legend ) .
"\n";
641 $s .= self::closeElement(
'fieldset' ) .
"\n";
659 return self::element(
'textarea',
660 Html::getTextInputAttributes(
686 return Html::encodeJsVar( $value, $pretty );
705 return Html::encodeJsCall( $name, $args, $pretty );
719 private static function isWellFormed( $text ) {
720 $parser = xml_parser_create(
"UTF-8" );
722 # case folding violates XML standard, turn it off
723 xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, 0 );
725 if ( !xml_parse( $parser, $text,
true ) ) {
730 xml_parser_free( $parser );
734 xml_parser_free( $parser );
749 Sanitizer::hackDocType() .
754 return self::isWellFormed( $html );
767 [
'"',
'>',
'<' ],
782 public static function buildForm( $fields, $submitLabel =
null, $submitAttribs = [] ) {
784 $form .=
"<table><tbody>";
786 foreach ( $fields as $labelmsg => $input ) {
787 $id =
"mw-$labelmsg";
788 $form .= self::openElement(
'tr', [
'id' => $id ] );
794 $form .= self::tags(
'td', [
'class' =>
'mw-label' ],
wfMessage( $labelmsg )->parse() );
795 $form .= self::openElement(
'td', [
'class' =>
'mw-input' ] )
796 . $input . self::closeElement(
'td' );
797 $form .= self::closeElement(
'tr' );
800 if ( $submitLabel ) {
801 $form .= self::openElement(
'tr' );
802 $form .= self::tags(
'td', [],
'' );
803 $form .= self::openElement(
'td', [
'class' =>
'mw-submit' ] )
804 . self::submitButton(
wfMessage( $submitLabel )->text(), $submitAttribs )
805 . self::closeElement(
'td' );
806 $form .= self::closeElement(
'tr' );
809 $form .=
"</tbody></table>";
820 public static function buildTable( $rows, $attribs = [], $headers =
null ) {
821 $s = self::openElement(
'table', $attribs );
823 if ( is_array( $headers ) ) {
824 $s .= self::openElement(
'thead', $attribs );
826 foreach ( $headers as $id =>
$header ) {
829 if ( is_string( $id ) ) {
830 $attribs[
'id'] = $id;
833 $s .= self::element(
'th', $attribs,
$header );
835 $s .= self::closeElement(
'thead' );
838 foreach ( $rows as $id => $row ) {
841 if ( is_string( $id ) ) {
842 $attribs[
'id'] = $id;
845 $s .= self::buildTableRow( $attribs, $row );
848 $s .= self::closeElement(
'table' );
860 $s = self::openElement(
'tr', $attribs );
862 foreach ( $cells as $id => $cell ) {
865 if ( is_string( $id ) ) {
866 $attribs[
'id'] = $id;
869 $s .= self::element(
'td', $attribs, $cell );
872 $s .= self::closeElement(
'tr' );
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
if(!defined( 'MW_NO_SESSION') &&! $wgCommandLineMode $wgLang
A class containing constants representing the names of configuration variables.
The Message class deals with fetching and processing of interface message into a variety of formats.
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 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 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 expandAttributes(?array $attribs)
Given an array of ('attributename' => 'value'), it generates the code to set the XML attributes : att...
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(...