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 formatOptions( $options, $value ) {
44 $attribs = $this->getAttributes( array( 'disabled', 'tabindex' ) );
45 $elementFunc = array( 'Html', $this->mOptionsLabelsNotFromMessage ?
'rawElement' : 'element' );
47 # @todo Should this produce an unordered list perhaps?
48 foreach ( $options as $label => $info ) {
49 if ( is_array( $info ) ) {
50 $html .= Html
::rawElement( 'h1', array(), $label ) . "\n";
51 $html .= $this->formatOptions( $info, $value );
53 $id = Sanitizer
::escapeId( $this->mID
. "-$info" );
54 $radio = Xml
::radio( $this->mName
, $info, $info === $value, $attribs +
array( 'id' => $id ) );
55 $radio .= ' ' . call_user_func( $elementFunc, 'label', array( 'for' => $id ), $label );
57 $html .= ' ' . Html
::rawElement(
59 array( 'class' => 'mw-htmlform-flatlist-item' ),
68 protected function needsLabel() {