blob: bda09c665fe06400b2e1f78bbba429e044260e46 (
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
|
<?php
namespace OOUI;
/**
* Checkbox input widget.
*/
class CheckboxInputWidget extends InputWidget {
/* Properties */
/**
* Whether the checkbox is selected.
*
* @var boolean
*/
protected $selected;
/**
* @param array $config Configuration options
* @param boolean $config['selected'] Whether the checkbox is initially selected
* (default: false)
*/
public function __construct( array $config = array() ) {
// Parent constructor
parent::__construct( $config );
// Initialization
$this->addClasses( array( 'oo-ui-checkboxInputWidget' ) );
$this->setSelected( isset( $config['selected'] ) ? $config['selected'] : false );
}
protected function getInputElement( $config ) {
$input = new Tag( 'input' );
$input->setAttributes( array( 'type' => 'checkbox' ) );
return $input;
}
/**
* Set selection state of this checkbox.
*
* @param boolean $state Whether the checkbox is selected
* @chainable
*/
public function setSelected( $state ) {
$this->selected = (bool)$state;
if ( $this->selected ) {
$this->input->setAttributes( array( 'checked' => 'checked' ) );
} else {
$this->input->removeAttributes( array( 'checked' ) );
}
return $this;
}
/**
* Check if this checkbox is selected.
*
* @return boolean Checkbox is selected
*/
public function isSelected() {
return $this->selected;
}
public function getConfig( &$config ) {
if ( $this->selected ) {
$config['selected'] = $this->selected;
}
return parent::getConfig( $config );
}
}
|