uawdijnntqw1x1x1
IP : 216.73.216.54
Hostname : neogeopocket.gameplayer.club
Kernel : Linux neogeopocket.gameplayer.club 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
html
/
1c732
/
..
/
mediawiki
/
includes
/
templates
/
..
/
.
/
widget
/
NamespacesMultiselectWidget.php
/
/
<?php namespace MediaWiki\Widget; /** * Widget to select multiple namespaces. * * @copyright 2017 MediaWiki Widgets Team and others; see AUTHORS.txt * @license MIT */ class NamespacesMultiselectWidget extends TagMultiselectWidget { /** @var bool|null */ protected $allowEditTags = null; /** * @param array $config Configuration options * - bool $config['allowEditTags'] Allow editing of the tags by clicking them */ public function __construct( array $config = [] ) { parent::__construct( $config ); if ( isset( $config['allowEditTags'] ) ) { $this->allowEditTags = $config['allowEditTags']; } $this->addClasses( [ 'mw-widgets-namespacesMultiselectWidget' ] ); } protected function getJavaScriptClassName() { return 'mw.widgets.NamespacesMultiselectWidget'; } public function getConfig( &$config ) { if ( $this->allowEditTags !== null ) { $config['allowEditTags'] = $this->allowEditTags; } return parent::getConfig( $config ); } }
/var/www/html/1c732/../mediawiki/includes/templates/.././widget/NamespacesMultiselectWidget.php