48 $field = parent::loadInputFromParameters( $fieldname, $descriptor, $parent );
49 $field->setShowEmptyLabel(
false );
60 'mediawiki.ui.button',
62 'mediawiki.ui.checkbox',
65 return parent::getHTML( $submitResult );
69 $attribs = parent::getFormAttributes();
70 $attribs[
'class'] = [
'mw-ui-vform',
'mw-ui-container',
'visualClear' ];
82 if ( $this->mShowSubmit ) {
85 if ( isset( $this->mSubmitID ) ) {
89 if ( isset( $this->mSubmitName ) ) {
93 if ( isset( $this->mSubmitTooltip ) ) {
99 'mw-ui-button mw-ui-big mw-ui-block',
101 foreach ( $this->mSubmitFlags
as $flag ) {
102 $attribs[
'class'][] =
'mw-ui-' . $flag;
108 if ( $this->mShowReset ) {
113 'value' => $this->
msg(
'htmlform-reset' )->
text(),
114 'class' =>
'mw-ui-button mw-ui-big mw-ui-block',
119 foreach ( $this->mButtons
as $button ) {
122 'name' => $button[
'name'],
123 'value' => $button[
'value']
126 if ( $button[
'attribs'] ) {
127 $attrs += $button[
'attribs'];
130 if ( isset( $button[
'id'] ) ) {
131 $attrs[
'id'] = $button[
'id'];
134 $attrs[
'class'] = isset( $attrs[
'class'] ) ? (
array)$attrs[
'class'] : [];
135 $attrs[
'class'][] =
'mw-ui-button mw-ui-big mw-ui-block';
145 [
'class' =>
'mw-htmlform-submit-buttons' ],
"\n$buttons" ) .
"\n";
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
the array() calling protocol came about after MediaWiki 1.4rc1.
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
static tooltipAndAccesskeyAttribs($name, array $msgParams=[])
Returns the attributes for the tooltip and access key.
static submitButton($value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
msg()
Get a Message object with context set Parameters are the same as wfMessage()
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
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
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 element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
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
getOutput()
Get the OutputPage object.