Merge "docs: Fix typo"
[mediawiki.git] / includes / widget / DateTimeInputWidget.php
blob99332dbaf69fcc0900ec7e195d13d5c9587953dd
1 <?php
3 namespace MediaWiki\Widget;
5 use InvalidArgumentException;
6 use OOUI\InputWidget;
7 use OOUI\Tag;
9 /**
10 * Date-time input widget.
12 * @copyright 2016 MediaWiki Widgets Team and others; see AUTHORS.txt
13 * @license MIT
15 class DateTimeInputWidget extends InputWidget {
17 /** @var string|null */
18 protected $type = null;
19 /** @var string|null */
20 protected $min = null;
21 /** @var string|null */
22 protected $max = null;
23 /** @var bool|null */
24 protected $clearable = null;
26 /**
27 * @param array $config Configuration options
28 * - string $config['type'] 'date', 'time', or 'datetime'
29 * - string $config['min'] Minimum date, time, or datetime
30 * - string $config['max'] Maximum date, time, or datetime
31 * - bool $config['clearable'] Whether to provide for blanking the value.
33 public function __construct( array $config = [] ) {
34 // We need $this->type set before calling the parent constructor
35 if ( !isset( $config['type'] ) ) {
36 throw new InvalidArgumentException( '$config[\'type\'] must be specified' );
38 $this->type = $config['type'];
40 parent::__construct( $config );
42 // Properties, which are ignored in PHP and just shipped back to JS
43 if ( isset( $config['min'] ) ) {
44 $this->min = $config['min'];
46 if ( isset( $config['max'] ) ) {
47 $this->max = $config['max'];
49 if ( isset( $config['clearable'] ) ) {
50 $this->clearable = $config['clearable'];
53 // Initialization
54 $this->addClasses( [ 'mw-widgets-datetime-dateTimeInputWidget' ] );
55 $this->appendContent( new PendingTextInputWidget() );
58 protected function getJavaScriptClassName() {
59 return 'mw.widgets.datetime.DateTimeInputWidget';
62 public function getConfig( &$config ) {
63 $config['type'] = $this->type;
64 if ( $this->min !== null ) {
65 $config['min'] = $this->min;
67 if ( $this->max !== null ) {
68 $config['max'] = $this->max;
70 if ( $this->clearable !== null ) {
71 $config['clearable'] = $this->clearable;
73 return parent::getConfig( $config );
76 protected function getInputElement( $config ) {
77 return ( new Tag( 'input' ) )->setAttributes( [ 'type' => $this->type ] );