2017-01-08 02:37:29 +00:00
|
|
|
<?php
|
2017-12-28 15:17:33 +00:00
|
|
|
|
2017-01-08 02:37:29 +00:00
|
|
|
namespace MediaWiki\Widget;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Widget to select multiple users.
|
2017-12-28 15:17:33 +00:00
|
|
|
*
|
2018-01-24 19:59:05 +00:00
|
|
|
* @copyright 2017 MediaWiki Widgets Team and others; see AUTHORS.txt
|
2017-12-28 15:17:33 +00:00
|
|
|
* @license MIT
|
2017-01-08 02:37:29 +00:00
|
|
|
*/
|
2018-12-12 15:57:57 +00:00
|
|
|
class UsersMultiselectWidget extends TagMultiselectWidget {
|
2017-01-08 02:37:29 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param array $config Configuration options
|
|
|
|
|
*/
|
|
|
|
|
public function __construct( array $config = [] ) {
|
|
|
|
|
parent::__construct( $config );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getJavaScriptClassName() {
|
|
|
|
|
return 'mw.widgets.UsersMultiselectWidget';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getConfig( &$config ) {
|
|
|
|
|
return parent::getConfig( $config );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|