4 * Radio checkbox fields.
6 class HTMLRadioField
extends HTMLFormField
{
7 function validate( $value, $alldata ) {
8 $p = parent
::validate( $value, $alldata );
14 if ( !is_string( $value ) && !is_int( $value ) ) {
18 $validOptions = HTMLFormField
::flattenOptions( $this->getOptions() );
20 if ( in_array( strval( $value ), $validOptions, true ) ) {
23 return $this->msg( 'htmlform-select-badoption' )->parse();
28 * This returns a block of all the radio options, in one cell.
29 * @see includes/HTMLFormField#getInputHTML()
31 * @param string $value
35 function getInputHTML( $value ) {
36 $html = $this->formatOptions( $this->getOptions(), strval( $value ) );
41 function getInputOOUI( $value ) {
43 foreach ( $this->getOptions() as $label => $data ) {
46 'label' => $this->mOptionsLabelsNotFromMessage ?
new OOUI\
HtmlSnippet( $label ) : $label,
50 return new OOUI\
RadioSelectInputWidget( array(
51 'name' => $this->mName
,
54 'options' => $options,
55 'classes' => 'mw-htmlform-flatlist-item',
56 ) +
$this->getAttributes( array( 'disabled', 'tabindex' ), array( 'tabindex' => 'tabIndex' ) ) );
59 function formatOptions( $options, $value ) {
62 $attribs = $this->getAttributes( array( 'disabled', 'tabindex' ) );
63 $elementFunc = array( 'Html', $this->mOptionsLabelsNotFromMessage ?
'rawElement' : 'element' );
65 # @todo Should this produce an unordered list perhaps?
66 foreach ( $options as $label => $info ) {
67 if ( is_array( $info ) ) {
68 $html .= Html
::rawElement( 'h1', array(), $label ) . "\n";
69 $html .= $this->formatOptions( $info, $value );
71 $id = Sanitizer
::escapeId( $this->mID
. "-$info" );
72 $radio = Xml
::radio( $this->mName
, $info, $info === $value, $attribs +
array( 'id' => $id ) );
73 $radio .= ' ' . call_user_func( $elementFunc, 'label', array( 'for' => $id ), $label );
75 $html .= ' ' . Html
::rawElement(
77 array( 'class' => 'mw-htmlform-flatlist-item mw-ui-radio' ),
86 protected function needsLabel() {