4 * Double field with a dropdown list constructed from a system message in the format
7 * * New Optgroup header
8 * Plus a text field underneath for an additional reason. The 'value' of the field is
9 * "<select>: <extra reason>", or "<extra reason>" if nothing has been selected in the
11 * @todo FIXME: If made 'required', only the text field should be compulsory.
13 class HTMLSelectAndOtherField
extends HTMLSelectField
{
14 function __construct( $params ) {
15 if ( array_key_exists( 'other', $params ) ) {
16 } elseif ( array_key_exists( 'other-message', $params ) ) {
17 $params['other'] = wfMessage( $params['other-message'] )->plain();
19 $params['other'] = wfMessage( 'htmlform-selectorother-other' )->plain();
22 parent
::__construct( $params );
24 if ( $this->getOptions() === null ) {
26 throw new MWException( 'HTMLSelectAndOtherField called without any options' );
28 if ( !in_array( 'other', $this->mOptions
, true ) ) {
29 $this->mOptions
[$params['other']] = 'other';
31 $this->mFlatOptions
= self
::flattenOptions( $this->getOptions() );
35 function getInputHTML( $value ) {
36 $select = parent
::getInputHTML( $value[1] );
39 'id' => $this->mID
. '-other',
40 'size' => $this->getSize(),
43 if ( $this->mClass
!== '' ) {
44 $textAttribs['class'] = $this->mClass
;
47 $allowedParams = array(
55 $textAttribs +
= $this->getAttributes( $allowedParams );
57 $textbox = Html
::input( $this->mName
. '-other', $value[2], 'text', $textAttribs );
59 return "$select<br />\n$textbox";
63 * @param WebRequest $request
65 * @return array("<overall message>","<select value>","<text field value>")
67 function loadDataFromRequest( $request ) {
68 if ( $request->getCheck( $this->mName
) ) {
70 $list = $request->getText( $this->mName
);
71 $text = $request->getText( $this->mName
. '-other' );
73 if ( $list == 'other' ) {
75 } elseif ( !in_array( $list, $this->mFlatOptions
, true ) ) {
76 # User has spoofed the select form to give an option which wasn't
77 # in the original offer. Sulk...
79 } elseif ( $text == '' ) {
82 $final = $list . $this->msg( 'colon-separator' )->inContentLanguage()->text() . $text;
85 $final = $this->getDefault();
89 foreach ( $this->mFlatOptions
as $option ) {
90 $match = $option . $this->msg( 'colon-separator' )->inContentLanguage()->text();
91 if ( strpos( $text, $match ) === 0 ) {
93 $text = substr( $text, strlen( $match ) );
99 return array( $final, $list, $text );
103 return isset( $this->mParams
['size'] ) ?
$this->mParams
['size'] : 45;
106 function validate( $value, $alldata ) {
107 # HTMLSelectField forces $value to be one of the options in the select
108 # field, which is not useful here. But we do want the validation further up
110 $p = parent
::validate( $value[1], $alldata );
116 if ( isset( $this->mParams
['required'] )
117 && $this->mParams
['required'] !== false
120 return $this->msg( 'htmlform-required' )->parse();