43 $field = parent::loadInputFromParameters( $fieldname, $descriptor, $parent );
44 $field->setShowEmptyLabel(
false );
48 public function getHTML( $submitResult ) {
55 'mediawiki.ui.button',
57 'mediawiki.ui.checkbox',
60 return parent::getHTML( $submitResult );
64 $attribs = parent::getFormAttributes();
65 $attribs[
'class'] = [
'mw-htmlform',
'mw-ui-vform',
'mw-ui-container' ];
77 if ( $this->mShowSubmit ) {
80 if ( isset( $this->mSubmitID ) ) {
84 if ( isset( $this->mSubmitName ) ) {
88 if ( isset( $this->mSubmitTooltip ) ) {
94 'mw-ui-button mw-ui-big mw-ui-block',
96 foreach ( $this->mSubmitFlags as $flag ) {
97 $attribs[
'class'][] =
'mw-ui-' . $flag;
103 if ( $this->mShowReset ) {
104 $buttons .= Html::element(
108 'value' => $this->
msg(
'htmlform-reset' )->
text(),
109 'class' =>
'mw-ui-button mw-ui-big mw-ui-block',
114 if ( $this->mShowCancel ) {
115 $target = $this->mCancelTarget ?: Title::newMainPage();
116 if ( $target instanceof
Title ) {
117 $target = $target->getLocalURL();
119 $buttons .= Html::element(
122 'class' =>
'mw-ui-button mw-ui-big mw-ui-block',
129 foreach ( $this->mButtons as $button ) {
132 'name' => $button[
'name'],
133 'value' => $button[
'value']
136 if ( $button[
'attribs'] ) {
137 $attrs += $button[
'attribs'];
140 if ( isset( $button[
'id'] ) ) {
141 $attrs[
'id'] = $button[
'id'];
144 $attrs[
'class'] = isset( $attrs[
'class'] ) ? (
array)$attrs[
'class'] : [];
145 $attrs[
'class'][] =
'mw-ui-button mw-ui-big mw-ui-block';
147 $buttons .= Html::element(
'input', $attrs ) .
"\n";
154 return Html::rawElement(
'div',
155 [
'class' =>
'mw-htmlform-submit-buttons' ],
"\n$buttons" ) .
"\n";
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[], $options=null)
Returns the attributes for the tooltip and access key.
Represents a title within MediaWiki.
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
the array() calling protocol came about after MediaWiki 1.4rc1.
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
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