Merge "Special:Upload should not crash on failing previews"
[mediawiki.git] / includes / widget / DateTimeInputWidget.php
blobf0d5cdb64f3deccd6e3fd20b48c401c6fa0b2ee9
1 <?php
2 /**
3 * MediaWiki Widgets – DateTimeInputWidget class.
5 * @copyright 2016 MediaWiki Widgets Team and others; see AUTHORS.txt
6 * @license The MIT License (MIT); see LICENSE.txt
7 */
8 namespace MediaWiki\Widget;
10 use OOUI\Tag;
12 /**
13 * Date-time input widget.
15 class DateTimeInputWidget extends \OOUI\InputWidget {
17 protected $type = null;
18 protected $min = null;
19 protected $max = null;
20 protected $clearable = null;
22 /**
23 * @param array $config Configuration options
24 * @param string $config['type'] 'date', 'time', or 'datetime'
25 * @param string $config['min'] Minimum date, time, or datetime
26 * @param string $config['max'] Maximum date, time, or datetime
27 * @param bool $config['clearable'] Whether to provide for blanking the value.
29 public function __construct( array $config = [] ) {
30 // We need $this->type set before calling the parent constructor
31 if ( isset( $config['type'] ) ) {
32 $this->type = $config['type'];
33 } else {
34 throw new \InvalidArgumentException( '$config[\'type\'] must be specified' );
37 // Parent constructor
38 parent::__construct( $config );
40 // Properties, which are ignored in PHP and just shipped back to JS
41 if ( isset( $config['min'] ) ) {
42 $this->min = $config['min'];
44 if ( isset( $config['max'] ) ) {
45 $this->max = $config['max'];
47 if ( isset( $config['clearable'] ) ) {
48 $this->clearable = $config['clearable'];
51 // Initialization
52 $this->addClasses( [ 'mw-widgets-datetime-dateTimeInputWidget' ] );
55 protected function getJavaScriptClassName() {
56 return 'mw.widgets.datetime.DateTimeInputWidget';
59 public function getConfig( &$config ) {
60 $config['type'] = $this->type;
61 if ( $this->min !== null ) {
62 $config['min'] = $this->min;
64 if ( $this->max !== null ) {
65 $config['max'] = $this->max;
67 if ( $this->clearable !== null ) {
68 $config['clearable'] = $this->clearable;
70 return parent::getConfig( $config );
73 protected function getInputElement( $config ) {
74 return ( new Tag( 'input' ) )->setAttributes( [ 'type' => $this->type ] );