Go to the documentation of this file.
112 if ( isset( $attrs[
'class'] ) ) {
113 if ( is_array( $attrs[
'class'] ) ) {
114 $attrs[
'class'][] =
'mw-ui-button';
115 $attrs[
'class'] = array_merge( $attrs[
'class'], $modifiers );
117 $attrs[
'class'] = implode(
' ', $attrs[
'class'] );
119 $attrs[
'class'] .=
' mw-ui-button ' . implode(
' ', $modifiers );
123 $attrs[
'class'] =
'mw-ui-button ' . implode(
' ', $modifiers );
139 if ( isset( $attrs[
'class'] ) ) {
140 if ( is_array( $attrs[
'class'] ) ) {
141 $attrs[
'class'][] =
'mw-ui-input';
143 $attrs[
'class'] .=
' mw-ui-input';
146 $attrs[
'class'] =
'mw-ui-input';
167 self::buttonAttributes( $attrs, $modifiers ),
186 $attrs[
'type'] =
'submit';
187 $attrs[
'value'] = $contents;
188 return self::element(
'input', self::buttonAttributes( $attrs, $modifiers ) );
211 if ( in_array( $element, self::$voidElements ) ) {
213 return substr( $start, 0, -1 ) .
'/>';
255 $element = strtolower( $element );
258 if ( $element ==
'input' ) {
286 if ( isset(
$attribs[
'type'] ) && !in_array(
$attribs[
'type'], $validTypes ) ) {
294 if ( $element ==
'button' && !isset(
$attribs[
'type'] ) ) {
299 self::dropDefaults( $element,
$attribs ) ) .
'>';
310 $element = strtolower( $element );
312 return "</$element>";
335 static $attribDefaults = [
336 'area' => [
'shape' =>
'rect' ],
338 'formaction' =>
'GET',
339 'formenctype' =>
'application/x-www-form-urlencoded',
347 'autocomplete' =>
'on',
348 'enctype' =>
'application/x-www-form-urlencoded',
351 'formaction' =>
'GET',
354 'keygen' => [
'keytype' =>
'rsa' ],
355 'link' => [
'media' =>
'all' ],
356 'menu' => [
'type' =>
'list' ],
357 'script' => [
'type' =>
'text/javascript' ],
360 'type' =>
'text/css',
362 'textarea' => [
'wrap' =>
'soft' ],
365 $element = strtolower( $element );
368 $lcattrib = strtolower( $attrib );
369 if ( is_array(
$value ) ) {
376 if ( isset( $attribDefaults[$element][$lcattrib] )
377 && $attribDefaults[$element][$lcattrib] ==
$value
382 if ( $lcattrib ==
'class' &&
$value ==
'' ) {
388 if ( $element ===
'link'
393 if ( $element ===
'input' ) {
396 if (
$type ===
'checkbox' ||
$type ===
'radio' ) {
403 } elseif (
$type ===
'submit' ) {
416 if ( $element ===
'select' && isset(
$attribs[
'size'] ) ) {
417 if ( in_array(
'multiple',
$attribs )
421 if ( strval(
$attribs[
'size'] ) ==
'4' ) {
426 if ( strval(
$attribs[
'size'] ) ==
'1' ) {
484 if ( is_int( $key ) && in_array( strtolower(
$value ), self::$boolAttribs ) ) {
490 $key = strtolower( $key );
494 $spaceSeparatedListAttributes = [
504 if ( in_array( $key, $spaceSeparatedListAttributes ) ) {
509 if ( is_array(
$value ) ) {
513 if ( is_string( $v ) ) {
516 if ( !isset(
$value[$v] ) ) {
528 $value = implode(
' ', $newValue );
538 } elseif ( is_array(
$value ) ) {
539 throw new MWException(
"HTML attribute $key can not contain a list of values" );
544 if ( in_array( $key, self::$boolAttribs ) ) {
545 $ret .=
" $key=\"\"";
547 $ret .=
" $key=$quote" . Sanitizer::encodeAttribute(
$value ) . $quote;
565 if ( preg_match(
'/[<&]/', $contents ) ) {
566 $contents =
"/*<![CDATA[*/$contents/*]]>*/";
580 $attrs = [
'src' => $url ];
599 $contents = strtr( $contents, [
603 ']]>' =>
'\5D\5D\3E '
606 if ( preg_match(
'/[<&]/', $contents ) ) {
607 $contents =
"/*<![CDATA[*/$contents/*]]>*/";
625 'rel' =>
'stylesheet',
646 if ( in_array(
$type, [
'text',
'search',
'email',
'password',
'number' ] ) ) {
649 if ( in_array(
$type, [
'button',
'reset',
'submit' ] ) ) {
744 if ( substr(
$value, 0, 1 ) ==
"\n" ) {
749 $spacedValue =
"\n" .
$value;
766 if ( !isset(
$params[
'exclude'] ) || !is_array(
$params[
'exclude'] ) ) {
770 if ( isset(
$params[
'all'] ) ) {
787 $nsName =
wfMessage(
'blanknamespace' )->text();
788 } elseif ( is_int( $nsId ) ) {
791 $optionsOut[$nsId] = $nsName;
814 array $selectAttribs = []
816 ksort( $selectAttribs );
819 if ( isset(
$params[
'selected'] ) ) {
824 if ( preg_match(
'/^\d+$/',
$params[
'selected'] ) ) {
832 if ( !isset(
$params[
'disable'] ) || !is_array(
$params[
'disable'] ) ) {
844 'disabled' => in_array( $nsId,
$params[
'disable'] ),
846 'selected' => $nsId ===
$params[
'selected'],
851 if ( !array_key_exists(
'id', $selectAttribs ) ) {
852 $selectAttribs[
'id'] =
'namespace';
855 if ( !array_key_exists(
'name', $selectAttribs ) ) {
856 $selectAttribs[
'name'] =
'namespace';
860 if ( isset(
$params[
'label'] ) ) {
863 'for' => isset( $selectAttribs[
'id'] ) ? $selectAttribs[
'id'] :
null,
871 . implode(
"\n", $optionsHtml )
896 $ret .=
"<?xml version=\"1.0\" encoding=\"UTF-8\" ?" .
">\n";
899 $attribs[
'xmlns'] =
'http://www.w3.org/1999/xhtml';
907 $ret .=
"<!DOCTYPE html>\n";
926 # https://html.spec.whatwg.org/multipage/infrastructure.html#xml-mime-type
929 # * Any MIME type with a subtype ending in +xml (this implicitly includes application/xhtml+xml)
930 return (
bool)preg_match(
'!^(text|application)/xml$|^.+/.+\+xml$!', $mimetype );
943 static function infoBox( $text, $icon, $alt, $class =
'' ) {
992 foreach ( $urls
as $density => $url ) {
995 $density = (
string)(
float)$density;
996 $candidates[$density] = $url;
1000 ksort( $candidates, SORT_NUMERIC );
1001 $candidates = array_unique( $candidates );
1004 foreach ( $candidates
as $density => $url ) {
1005 $candidates[$density] = $url .
' ' . $density .
'x';
1008 return implode(
", ", $candidates );
static linkButton( $contents, array $attrs, array $modifiers=[])
Returns an HTML link element in a string styled as a button (when $wgUseMediaWikiUIEverywhere is enab...
static textarea( $name, $value='', array $attribs=[])
Convenience function to produce a <textarea> element.
$wgMimeType
The default Content-Type header.
static getTextInputAttributes(array $attrs)
Modifies a set of attributes meant for text input elements and apply a set of default attributes.
static check( $name, $checked=false, array $attribs=[])
Convenience function to produce a checkbox (input element with type=checkbox)
$wgUseMediaWikiUIEverywhere
Temporary variable that applies MediaWiki UI wherever it can be supported.
static expandAttributes(array $attribs)
Given an associative array of element attributes, generate a string to stick after the element name i...
static htmlHeader(array $attribs=[])
Constructs the opening html-tag with necessary doctypes depending on global variables.
Allows to change the fields on the form that will be generated $name
static inlineScript( $contents)
Output a "<script>" tag with the given contents.
static buttonAttributes(array $attrs, array $modifiers=[])
Modifies a set of attributes meant for button elements and apply a set of default attributes when $wg...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static input( $name, $value='', $type='text', array $attribs=[])
Convenience function to produce an "<input>" element.
static closeElement( $element)
Returns "</$element>".
static isXmlMimeType( $mimetype)
Determines if the given MIME type is xml.
static srcSet(array $urls)
Generate a srcset attribute value.
static linkedScript( $url)
Output a "<script>" tag linking to the given URL, e.g., "<script src=foo.js></script>".
$wgHtml5Version
Defines the value of the version attribute in the <html> tag, if any.
static dropDefaults( $element, array $attribs)
Given an element name and an associative array of element attributes, return an array that is functio...
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
static radio( $name, $checked=false, array $attribs=[])
Convenience function to produce a radio button (input element with type=radio)
when a variable name is used in a it is silently declared as a new masking the global
static label( $label, $id, array $attribs=[])
Convenience function for generating a label for inputs.
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
static infoBox( $text, $icon, $alt, $class='')
Get HTML for an info box with an icon.
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
static namespaceSelectorOptions(array $params=[])
Helper for Html::namespaceSelector().
static namespaceSelector(array $params=[], array $selectAttribs=[])
Build a drop-down box for selecting a namespace.
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 & $ret
static inlineStyle( $contents, $media='all')
Output a "<style>" tag with the given contents for the given media type (if any).
static submitButton( $contents, array $attrs, array $modifiers=[])
Returns an HTML link element in a string styled as a button (when $wgUseMediaWikiUIEverywhere is enab...
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
static linkedStyle( $url, $media='all')
Output a "<link rel=stylesheet>" linking to the given URL for the given media type (if any).
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
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 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 "<
$wgXhtmlNamespaces
Permit other namespaces in addition to the w3.org default.
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
the array() calling protocol came about after MediaWiki 1.4rc1.
This class is a collection of static functions that serve two purposes:
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang