summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/php/Widget.php
blob: 7828a82e6f2843c048697a5cab6fe3ef4aaeef4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php

namespace OOUI;

/**
 * User interface control.
 *
 * @abstract
 */
class Widget extends Element {

	/* Static Properties */

	/**
	 * Whether this widget will behave reasonably when wrapped in a HTML `<label>`. If this is true,
	 * wrappers such as FieldLayout may use a `<label>`.
	 *
	 * @var boolean
	 */
	public static $supportsSimpleLabel = false;

	/* Properties */

	/**
	 * Disabled.
	 *
	 * @var boolean Widget is disabled
	 */
	protected $disabled = false;

	/* Methods */

	/**
	 * @param array $config Configuration options
	 * @param boolean $config['disabled'] Disable (default: false)
	 */
	public function __construct( array $config = array() ) {
		// Initialize config
		$config = array_merge( array( 'disabled' => false ), $config );

		// Parent constructor
		parent::__construct( $config );

		// Initialization
		$this->addClasses( array( 'oo-ui-widget' ) );
		$this->setDisabled( $config['disabled'] );
	}

	/**
	 * Check if the widget is disabled.
	 *
	 * @return boolean Button is disabled
	 */
	public function isDisabled() {
		return $this->disabled;
	}

	/**
	 * Set the disabled state of the widget.
	 *
	 * This should probably change the widgets' appearance and prevent it from being used.
	 *
	 * @param boolean $disabled Disable widget
	 * @chainable
	 */
	public function setDisabled( $disabled ) {
		$this->disabled = !!$disabled;
		$this->toggleClasses( array( 'oo-ui-widget-disabled' ), $this->disabled );
		$this->toggleClasses( array( 'oo-ui-widget-enabled' ), !$this->disabled );
		$this->setAttributes( array( 'aria-disabled' => $this->disabled ? 'true' : 'false' ) );

		return $this;
	}

	public function getConfig( &$config ) {
		if ( $this->disabled ) {
			$config['disabled'] = $this->disabled;
		}
		return parent::getConfig( $config );
	}
}