MediaWiki  1.33.0
SelectWithInputWidget.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Widget;
4 
5 use OOUI\DropdownInputWidget;
6 use OOUI\TextInputWidget;
7 
14 class SelectWithInputWidget extends \OOUI\Widget {
15 
16  protected $textinput = null;
17  protected $dropdowninput = null;
18 
28  public function __construct( array $config = [] ) {
29  // Configuration initialization
30  $config = array_merge(
31  [
32  'textinput' => [],
33  'dropdowninput' => [],
34  'or' => false
35  ],
36  $config
37  );
38 
39  if ( isset( $config['disabled'] ) && $config['disabled'] ) {
40  $config['textinput']['disabled'] = true;
41  $config['dropdowninput']['disabled'] = true;
42  }
43 
44  parent::__construct( $config );
45 
46  // Properties
47  $this->config = $config;
48  $this->textinput = new TextInputWidget( $config['textinput'] );
49  $this->dropdowninput = new DropdownInputWidget( $config['dropdowninput'] );
50 
51  // Initialization
52  $this
53  ->addClasses( [ 'mw-widget-selectWithInputWidget' ] )
54  ->appendContent( $this->dropdowninput, $this->textinput );
55  }
56 
57  protected function getJavaScriptClassName() {
58  return 'mw.widgets.SelectWithInputWidget';
59  }
60 
61  public function getConfig( &$config ) {
62  $config['textinput'] = $this->config['textinput'];
63  $config['dropdowninput'] = $this->config['dropdowninput'];
64  $config['dropdowninput']['dropdown']['$overlay'] = true;
65  $config['or'] = $this->config['or'];
66  return parent::getConfig( $config );
67  }
68 }
MediaWiki\Widget\SelectWithInputWidget\$textinput
$textinput
Definition: SelectWithInputWidget.php:16
MediaWiki\Widget\SelectWithInputWidget
Select and input widget.
Definition: SelectWithInputWidget.php:14
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
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Widget\SelectWithInputWidget\getJavaScriptClassName
getJavaScriptClassName()
Definition: SelectWithInputWidget.php:57
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
MediaWiki\Widget\SelectWithInputWidget\$dropdowninput
$dropdowninput
Definition: SelectWithInputWidget.php:17
MediaWiki\Widget
Definition: CheckMatrixWidget.php:3
MediaWiki\Widget\SelectWithInputWidget\getConfig
getConfig(&$config)
Definition: SelectWithInputWidget.php:61
MediaWiki\$config
Config $config
Definition: MediaWiki.php:43
MediaWiki\Widget\SelectWithInputWidget\__construct
__construct(array $config=[])
A version of the SelectWithInputWidget, with or set to true.
Definition: SelectWithInputWidget.php:28