MediaWiki  1.33.0
NamespaceInputWidget.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Widget;
4 
11 class NamespaceInputWidget extends \OOUI\DropdownInputWidget {
12 
13  protected $includeAllValue = null;
14 
21  public function __construct( array $config = [] ) {
22  // Configuration initialization
23  $config['options'] = $this->getNamespaceDropdownOptions( $config );
24 
25  parent::__construct( $config );
26 
27  // Properties
28  $this->includeAllValue = $config['includeAllValue'] ?? null;
29  $this->exclude = $config['exclude'] ?? [];
30 
31  // Initialization
32  $this->addClasses( [ 'mw-widget-namespaceInputWidget' ] );
33  }
34 
35  protected function getNamespaceDropdownOptions( array $config ) {
36  $namespaceOptionsParams = [
37  'all' => $config['includeAllValue'] ?? null,
38  'exclude' => $config['exclude'] ?? null
39  ];
40  $namespaceOptions = \Html::namespaceSelectorOptions( $namespaceOptionsParams );
41 
42  $options = [];
43  foreach ( $namespaceOptions as $id => $name ) {
44  $options[] = [
45  'data' => (string)$id,
46  'label' => $name,
47  ];
48  }
49 
50  return $options;
51  }
52 
53  protected function getJavaScriptClassName() {
54  return 'mw.widgets.NamespaceInputWidget';
55  }
56 
57  public function getConfig( &$config ) {
58  $config['includeAllValue'] = $this->includeAllValue;
59  $config['exclude'] = $this->exclude;
60  // Skip DropdownInputWidget's getConfig(), we don't need 'options' config
61  $config['dropdown']['$overlay'] = true;
62  return \OOUI\InputWidget::getConfig( $config );
63  }
64 }
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
MediaWiki\Widget\NamespaceInputWidget\getJavaScriptClassName
getJavaScriptClassName()
Definition: NamespaceInputWidget.php:53
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))
string
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition: hooks.txt:175
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
MediaWiki\Widget\NamespaceInputWidget\$includeAllValue
$includeAllValue
Definition: NamespaceInputWidget.php:13
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
MediaWiki\Widget\NamespaceInputWidget
Namespace input widget.
Definition: NamespaceInputWidget.php:11
MediaWiki\Widget\NamespaceInputWidget\getNamespaceDropdownOptions
getNamespaceDropdownOptions(array $config)
Definition: NamespaceInputWidget.php:35
MediaWiki\Widget\NamespaceInputWidget\__construct
__construct(array $config=[])
Definition: NamespaceInputWidget.php:21
MediaWiki\Widget\NamespaceInputWidget\getConfig
getConfig(&$config)
Definition: NamespaceInputWidget.php:57
MediaWiki\Widget
Definition: CheckMatrixWidget.php:3
$options
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 & $options
Definition: hooks.txt:1985
MediaWiki\$config
Config $config
Definition: MediaWiki.php:43
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9