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
|
<?php
namespace OOUI;
/**
* Radio input widget.
*/
class RadioInputWidget extends InputWidget {
use RequiredElement;
/* Static Properties */
/** @var string */
public static $tagName = 'span';
/**
* @param array $config Configuration options
* - bool $config['selected'] Whether the radio button is initially selected
* (default: false)
*/
public function __construct( array $config = [] ) {
// Parent constructor
parent::__construct( $config );
// Traits
$this->initializeRequiredElement(
array_merge( [ 'indicatorElement' => null ], $config )
);
// Initialization
$this->addClasses( [ 'oo-ui-radioInputWidget' ] );
// Required for pretty styling in WikimediaUI theme
$this->appendContent( new Tag( 'span' ) );
$this->setSelected( $config['selected'] ?? false );
}
/** @inheritDoc */
protected function getInputElement( $config ) {
return ( new Tag( 'input' ) )->setAttributes( [ 'type' => 'radio' ] );
}
/**
* Set selection state of this radio button.
*
* @param bool $state Whether the button is selected
* @return $this
*/
public function setSelected( $state ) {
// RadioInputWidget doesn't track its state.
if ( $state ) {
$this->input->setAttributes( [ 'checked' => 'checked' ] );
} else {
$this->input->removeAttributes( [ 'checked' ] );
}
return $this;
}
/**
* Check if this radio button is selected.
*
* @return bool Radio is selected
*/
public function isSelected() {
return $this->input->getAttribute( 'checked' ) === 'checked';
}
/** @inheritDoc */
public function getConfig( &$config ) {
if ( $this->isSelected() ) {
$config['selected'] = true;
}
return parent::getConfig( $config );
}
}
|