MediaWiki  REL1_31
SizeFilterWidget.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Widget;
4 
5 use \OOUI\RadioSelectInputWidget;
6 use \OOUI\TextInputWidget;
7 use \OOUI\LabelWidget;
8 
15 class SizeFilterWidget extends \OOUI\Widget {
16 
17  protected $radioselectinput = null;
18  protected $textinput = null;
19 
28  public function __construct( array $config = [] ) {
29  // Configuration initialization
30  $config = array_merge( [
31  'selectMin' => true,
32  'textinput' => [],
33  'radioselectinput' => []
34  ], $config );
35  $config['textinput'] = array_merge( [
36  'type' => 'number'
37  ], $config['textinput'] );
38  $config['radioselectinput'] = array_merge( [ 'options' => [
39  [
40  'data' => 'min',
41  'label' => wfMessage( 'minimum-size' )->text()
42  ],
43  [
44  'data' => 'max',
45  'label' => wfMessage( 'maximum-size' )->text()
46  ]
47  ] ], $config['radioselectinput'] );
48 
49  // Parent constructor
50  parent::__construct( $config );
51 
52  // Properties
53  $this->config = $config;
54  $this->radioselectinput = new RadioSelectInputWidget( $config[ 'radioselectinput'] );
55  $this->textinput = new TextInputWidget( $config[ 'textinput' ] );
56  $this->label = new LabelWidget( [ 'label' => wfMessage( 'pagesize' )->text() ] );
57 
58  // Initialization
59  $this->radioselectinput->setValue( $config[ 'selectMin' ] ? 'min' : 'max' );
60  $this
61  ->addClasses( [ 'mw-widget-sizeFilterWidget' ] )
62  ->appendContent( $this->radioselectinput, $this->textinput, $this->label );
63  }
64 
65  protected function getJavaScriptClassName() {
66  return 'mw.widgets.SizeFilterWidget';
67  }
68 
69  public function getConfig( &$config ) {
70  $config['textinput'] = $this->config['textinput'];
71  $config['radioselectinput'] = $this->config['radioselectinput'];
72  $config['selectMin'] = $this->config['selectMin'];
73  return parent::getConfig( $config );
74  }
75 }
MediaWiki\Widget\SizeFilterWidget
Select and input widget.
Definition: SizeFilterWidget.php:15
MediaWiki\Widget\SizeFilterWidget\$textinput
$textinput
Definition: SizeFilterWidget.php:18
wfMessage
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 "&lt
array
the array() calling protocol came about after MediaWiki 1.4rc1.
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:18
MediaWiki\Widget\SizeFilterWidget\__construct
__construct(array $config=[])
RadioSelectInputWidget and a TextInputWidget to set minimum or maximum byte size.
Definition: SizeFilterWidget.php:28
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:37
MediaWiki\Widget\SizeFilterWidget\$radioselectinput
$radioselectinput
Definition: SizeFilterWidget.php:17
MediaWiki\Widget\SizeFilterWidget\getConfig
getConfig(&$config)
Definition: SizeFilterWidget.php:69
MediaWiki\Widget\SizeFilterWidget\getJavaScriptClassName
getJavaScriptClassName()
Definition: SizeFilterWidget.php:65
MediaWiki\Widget
Definition: ComplexNamespaceInputWidget.php:3
MediaWiki\$config
Config $config
Definition: MediaWiki.php:43