44 $out =
'<' . $element;
48 if ( is_null( $contents ) ) {
51 if ( $allowShortTag && $contents ===
'' ) {
54 $out .=
'>' . htmlspecialchars( $contents, ENT_NOQUOTES ) .
"</$element>";
74 foreach (
$attribs as $name => $val ) {
75 $out .=
" {$name}=\"" . Sanitizer::encodeAttribute( $val ) .
'"';
79 throw new MWException(
'Expected attribute array, got something else in ' . __METHOD__ );
98 MediaWikiServices::getInstance()->getContentLanguage()->normalize( $contents );
100 return self::element( $element,
$attribs, $contents );
111 return '<' . $element . self::expandAttributes(
$attribs ) .
'>';
120 return "</$element>";
133 return self::openElement( $element,
$attribs ) . $contents .
"</$element>";
145 public static function monthSelector( $selected =
'', $allmonths =
null, $id =
'month' ) {
148 $data =
new XmlSelect(
'month', $id, $selected );
149 if ( is_null( $selected ) ) {
152 if ( !is_null( $allmonths ) ) {
155 for ( $i = 1; $i < 13; $i++ ) {
159 $data->setAttribute(
'class',
'mw-month-selector' );
160 return $data->getHTML();
170 # Offset overrides year/month selection
171 if ( $month && $month !== -1 ) {
172 $encMonth = intval( $month );
177 $encYear = intval( $year );
178 } elseif ( $encMonth ) {
179 $timestamp = MWTimestamp::getInstance();
180 $thisMonth = intval( $timestamp->format(
'n' ) );
181 $thisYear = intval( $timestamp->format(
'Y' ) );
182 if ( intval( $encMonth ) > $thisMonth ) {
185 $encYear = $thisYear;
189 $inputAttribs = [
'id' =>
'year',
'maxlength' => 4,
'size' => 7 ];
190 return self::label(
wfMessage(
'year' )->
text(),
'year' ) .
' ' .
191 Html::input(
'year', $encYear,
'number', $inputAttribs ) .
' ' .
193 self::monthSelector( $encMonth, -1 );
207 $inLanguage =
null, $overrideAttrs = [],
Message $msg =
null
211 $include = $customisedOnly ?
'mwfile' :
'mw';
212 $languages = Language::fetchLanguageNames( $inLanguage, $include );
233 $attrs = [
'id' =>
'wpUserLanguage',
'name' =>
'wpUserLanguage' ];
234 $attrs = array_merge( $attrs, $overrideAttrs );
236 if ( $msg ===
null ) {
240 self::label( $msg->text(), $attrs[
'id'] ),
241 self::tags(
'select', $attrs,
$options )
253 return self::element(
'span', [
'class' => $class ] +
$attribs, $text );
265 return self::tags( $tag, [
'class' => $class ] +
$attribs, $text );
277 $attributes = [
'name' =>
$name ];
280 $attributes[
'size'] = $size;
284 $attributes[
'value'] =
$value;
287 return self::element(
'input',
288 Html::getTextInputAttributes( $attributes +
$attribs ) );
302 return self::input( $name, $size,
$value,
303 array_merge(
$attribs, [
'type' =>
'password' ] ) );
314 public static function attrib( $name, $present =
true ) {
315 return $present ? [ $name =>
$name ] : [];
326 return self::element(
'input', array_merge(
329 'type' =>
'checkbox',
331 self::attrib(
'checked', $checked ),
344 return self::element(
'input', [
347 'value' =>
$value ] + self::attrib(
'checked', $checked ) +
$attribs );
361 $a = [
'for' => $id ];
363 foreach ( [
'class',
'title' ] as $attr ) {
369 return self::element(
'label', $a, $label );
382 public static function inputLabel( $label, $name, $id, $size =
false,
386 return $label .
"\u{00A0}" .
$input;
405 self::label( $label, $id,
$attribs ),
425 self::label( $label, $id,
$attribs );
428 $chkLabel = self::openElement(
'div', [
'class' =>
'mw-ui-checkbox' ] ) .
429 $chkLabel . self::closeElement(
'div' );
449 return self::radio( $name,
$value, $checked, [
'id' => $id ] +
$attribs ) .
451 self::label( $label, $id,
$attribs );
471 $baseAttrs[
'class'] =
'mw-ui-button mw-ui-progressive';
475 return Html::element(
'input',
$attribs );
486 public static function option( $text,
$value =
null, $selected =
false,
488 if ( !is_null(
$value ) ) {
494 return Html::element(
'option',
$attribs, $text );
510 public static function listDropDown( $name =
'', $list =
'', $other =
'',
511 $selected =
'', $class =
'',
$tabindex =
null
513 $options = self::listDropDownOptions( $list, [
'other' => $other ] );
515 $xmlSelect =
new XmlSelect( $name, $name, $selected );
519 $xmlSelect->setAttribute(
'class', $class );
522 $xmlSelect->setAttribute(
'tabindex',
$tabindex );
525 return $xmlSelect->getHTML();
544 if ( isset(
$params[
'other'] ) ) {
549 foreach ( explode(
"\n", $list ) as $option ) {
553 } elseif ( substr(
$value, 0, 1 ) ==
'*' && substr(
$value, 1, 1 ) !=
'*' ) {
554 # A new group is starting...
557 } elseif ( substr(
$value, 0, 2 ) ==
'**' ) {
560 if ( $optgroup ===
false ) {
566 # groupless reason list
587 if ( is_array(
$value ) ) {
588 $optionsOoui[] = [
'optgroup' => (
string)$text ];
589 foreach (
$value as $text2 => $value2 ) {
590 $optionsOoui[] = [
'data' => (
string)$value2,
'label' => (
string)$text2 ];
593 $optionsOoui[] = [
'data' => (
string)
$value,
'label' => (
string)$text ];
612 $s = self::openElement(
'fieldset',
$attribs ) .
"\n";
615 $s .= self::element(
'legend',
null, $legend ) .
"\n";
620 $s .= self::closeElement(
'fieldset' ) .
"\n";
638 return self::element(
'textarea',
639 Html::getTextInputAttributes(
665 return FormatJson::encode(
$value, $pretty, FormatJson::UTF8_OK );
680 foreach (
$args as &$arg ) {
681 $arg = self::encodeJsVar( $arg, $pretty );
682 if ( $arg ===
false ) {
687 return "$name(" . ( $pretty
688 ? (
' ' . implode(
', ',
$args ) .
' ' )
689 : implode(
',',
$args )
705 $parser = xml_parser_create(
"UTF-8" );
707 # case folding violates XML standard, turn it off
708 xml_parser_set_option(
$parser, XML_OPTION_CASE_FOLDING,
false );
710 if ( !xml_parse(
$parser, $text,
true ) ) {
734 Sanitizer::hackDocType() .
739 return self::isWellFormed(
$html );
752 [
'"',
'>',
'<' ],
767 public static function buildForm( $fields, $submitLabel =
null, $submitAttribs = [] ) {
769 $form .=
"<table><tbody>";
771 foreach ( $fields as $labelmsg =>
$input ) {
772 $id =
"mw-$labelmsg";
773 $form .= self::openElement(
'tr', [
'id' => $id ] );
779 $form .= self::tags(
'td', [
'class' =>
'mw-label' ],
wfMessage( $labelmsg )->parse() );
780 $form .= self::openElement(
'td', [
'class' =>
'mw-input' ] )
781 .
$input . self::closeElement(
'td' );
782 $form .= self::closeElement(
'tr' );
785 if ( $submitLabel ) {
786 $form .= self::openElement(
'tr' );
787 $form .= self::tags(
'td', [],
'' );
788 $form .= self::openElement(
'td', [
'class' =>
'mw-submit' ] )
789 . self::submitButton(
wfMessage( $submitLabel )->
text(), $submitAttribs )
790 . self::closeElement(
'td' );
791 $form .= self::closeElement(
'tr' );
794 $form .=
"</tbody></table>";
809 if ( is_array( $headers ) ) {
812 foreach ( $headers as $id =>
$header ) {
815 if ( is_string( $id ) ) {
821 $s .= self::closeElement(
'thead' );
824 foreach (
$rows as $id => $row ) {
827 if ( is_string( $id ) ) {
834 $s .= self::closeElement(
'table' );
848 foreach ( $cells as $id => $cell ) {
851 if ( is_string( $id ) ) {
858 $s .= self::closeElement(
'tr' );
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
$wgLanguageCode
Site language code.
$wgUseMediaWikiUIEverywhere
Temporary variable that applies MediaWiki UI wherever it can be supported.
The Message class provides methods which fulfil two basic services:
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)
Build a table of data.
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(...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
in this case you re responsible for computing and outputting the entire conflict i the difference between revisions and your text headers and sections and Diff & $tabindex
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Allows to change the fields on the form that will be generated $name
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
in this case you re responsible for computing and outputting the entire conflict i the difference between revisions and your text headers and sections and Diff initially an empty< div id="toolbar"></div > Hook subscribers can return false to have no toolbar HTML be loaded overridable Default is either copyrightwarning or copyrightwarning2 overridable Default is editpage tos summary such as anonymity and the real check
if(is_array($mode)) switch( $mode) $input
switch( $options['output']) $languages