MediaWiki REL1_34
UsersMultiselectWidget.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Widget;
4
12
16 public function __construct( array $config = [] ) {
17 parent::__construct( $config );
18 }
19
20 protected function getJavaScriptClassName() {
21 return 'mw.widgets.UsersMultiselectWidget';
22 }
23
24 public function getConfig( &$config ) {
25 return parent::getConfig( $config );
26 }
27
28}
Abstract base class for widgets to select multiple users, titles, namespaces, etc.