Merge "Introduce MovePage::moveSubpages(IfAllowed)"
[lhc/web/wiklou.git] / includes / widget / UsersMultiselectWidget.php
1 <?php
2
3 namespace MediaWiki\Widget;
4
5 /**
6 * Widget to select multiple users.
7 *
8 * @copyright 2017 MediaWiki Widgets Team and others; see AUTHORS.txt
9 * @license MIT
10 */
11 class UsersMultiselectWidget extends TagMultiselectWidget {
12
13 /**
14 * @param array $config Configuration options
15 */
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 }