MediaWiki REL1_30
HTMLSizeFilterField.php
Go to the documentation of this file.
1<?php
2
12 public function getSize() {
13 return isset( $this->mParams['size'] ) ? $this->mParams['size'] : 9;
14 }
15
16 public function getInputHTML( $value ) {
17 $attribs = [];
18 if ( !empty( $this->mParams['disabled'] ) ) {
19 $attribs['disabled'] = 'disabled';
20 }
21
22 $html = Xml::radioLabel(
23 $this->msg( 'minimum-size' )->text(),
24 $this->mName . '-mode',
25 'min',
26 $this->mID . '-mode-min',
27 $value >= 0,
29 );
30 $html .= '&#160;' . Xml::radioLabel(
31 $this->msg( 'maximum-size' )->text(),
32 $this->mName . '-mode',
33 'max',
34 $this->mID . '-mode-max',
35 $value < 0,
37 );
38 $html .= '&#160;' . parent::getInputHTML( $value ? abs( $value ) : '' );
39 $html .= '&#160;' . $this->msg( 'pagesize' )->parse();
40
41 return $html;
42 }
43
44 // No OOUI yet
45 public function getInputOOUI( $value ) {
46 return false;
47 }
48
54 public function loadDataFromRequest( $request ) {
55 $size = $request->getInt( $this->mName );
56 if ( !$size ) {
57 return $this->getDefault();
58 }
59 $size = abs( $size );
60
61 // negative numbers represent "max", positive numbers represent "min"
62 if ( $request->getVal( $this->mName . '-mode' ) === 'max' ) {
63 return -$size;
64 } else {
65 return $size;
66 }
67 }
68
69 protected function needsLabel() {
70 return false;
71 }
72}
msg()
Get a translated interface message.
A field that must contain a number.
A size filter field for use on query-type special pages.
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
needsLabel()
Should this field have a label, or is there no input element with the appropriate id for the label to...
getInputOOUI( $value)
Same as getInputHTML, but returns an OOUI object.
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
Definition design.txt:18
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 you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2775
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
Definition hooks.txt:1983
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
Definition hooks.txt:1984