MediaWiki  1.29.2
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 
23  $this->msg( 'minimum-size' )->text(),
24  $this->mName . '-mode',
25  'min',
26  $this->mID . '-mode-min',
27  $value >= 0,
28  $attribs
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,
36  $attribs
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 }
$request
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2612
HTMLIntField
A field that must contain a number.
Definition: HTMLIntField.php:6
text
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:12
php
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
Definition: injection.txt:35
$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 & $html
Definition: hooks.txt:1956
HTMLSizeFilterField\getInputHTML
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
Definition: HTMLSizeFilterField.php:16
$attribs
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:1956
HTMLSizeFilterField
A size filter field for use on query-type special pages.
Definition: HTMLSizeFilterField.php:11
HTMLSizeFilterField\loadDataFromRequest
loadDataFromRequest( $request)
Definition: HTMLSizeFilterField.php:54
$value
$value
Definition: styleTest.css.php:45
HTMLFormField\getDefault
getDefault()
Definition: HTMLFormField.php:970
HTMLSizeFilterField\getSize
getSize()
Definition: HTMLSizeFilterField.php:12
HTMLFormField\msg
msg()
Get a translated interface message.
Definition: HTMLFormField.php:77
Xml\radioLabel
static radioLabel( $label, $name, $value, $id, $checked=false, $attribs=[])
Convenience function to build an HTML radio button with a label.
Definition: Xml.php:444
HTMLSizeFilterField\getInputOOUI
getInputOOUI( $value)
Same as getInputHTML, but returns an OOUI object.
Definition: HTMLSizeFilterField.php:45
HTMLSizeFilterField\needsLabel
needsLabel()
Should this field have a label, or is there no input element with the appropriate id for the label to...
Definition: HTMLSizeFilterField.php:69