2013-11-19 12:55:50 +00:00
|
|
|
<?php
|
2013-11-19 13:08:16 +00:00
|
|
|
|
2013-11-19 12:55:50 +00:00
|
|
|
/**
|
|
|
|
|
* Select dropdown field, with an additional "other" textbox.
|
|
|
|
|
*/
|
|
|
|
|
class HTMLSelectOrOtherField extends HTMLTextField {
|
|
|
|
|
function __construct( $params ) {
|
2013-11-19 13:08:16 +00:00
|
|
|
if ( !in_array( 'other', $params['options'], true ) ) {
|
|
|
|
|
$msg =
|
|
|
|
|
isset( $params['other'] )
|
|
|
|
|
? $params['other']
|
|
|
|
|
: wfMessage( 'htmlform-selectorother-other' )->text();
|
|
|
|
|
$params['options'][$msg] = 'other';
|
2013-11-19 12:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parent::__construct( $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function forceToStringRecursive( $array ) {
|
|
|
|
|
if ( is_array( $array ) ) {
|
|
|
|
|
return array_map( array( __CLASS__, 'forceToStringRecursive' ), $array );
|
|
|
|
|
} else {
|
|
|
|
|
return strval( $array );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getInputHTML( $value ) {
|
|
|
|
|
$valInSelect = false;
|
|
|
|
|
|
|
|
|
|
if ( $value !== false ) {
|
2013-11-19 13:08:16 +00:00
|
|
|
$valInSelect = in_array( $value, HTMLFormField::flattenOptions( $this->mParams['options'] ) );
|
2013-11-19 12:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$selected = $valInSelect ? $value : 'other';
|
|
|
|
|
|
2013-11-19 13:08:16 +00:00
|
|
|
$opts = self::forceToStringRecursive( $this->mParams['options'] );
|
2013-11-19 12:55:50 +00:00
|
|
|
|
|
|
|
|
$select = new XmlSelect( $this->mName, $this->mID, $selected );
|
|
|
|
|
$select->addOptions( $opts );
|
|
|
|
|
|
|
|
|
|
$select->setAttribute( 'class', 'mw-htmlform-select-or-other' );
|
|
|
|
|
|
|
|
|
|
$tbAttribs = array( 'id' => $this->mID . '-other', 'size' => $this->getSize() );
|
|
|
|
|
|
2013-11-19 13:08:16 +00:00
|
|
|
if ( !empty( $this->mParams['disabled'] ) ) {
|
2013-11-19 12:55:50 +00:00
|
|
|
$select->setAttribute( 'disabled', 'disabled' );
|
2013-11-19 13:08:16 +00:00
|
|
|
$tbAttribs['disabled'] = 'disabled';
|
2013-11-19 12:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$select = $select->getHTML();
|
|
|
|
|
|
2013-11-19 13:08:16 +00:00
|
|
|
if ( isset( $this->mParams['maxlength'] ) ) {
|
|
|
|
|
$tbAttribs['maxlength'] = $this->mParams['maxlength'];
|
2013-11-19 12:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $this->mClass !== '' ) {
|
2013-11-19 13:08:16 +00:00
|
|
|
$tbAttribs['class'] = $this->mClass;
|
2013-11-19 12:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$textbox = Html::input( $this->mName . '-other', $valInSelect ? '' : $value, 'text', $tbAttribs );
|
|
|
|
|
|
|
|
|
|
return "$select<br />\n$textbox";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $request WebRequest
|
|
|
|
|
*
|
|
|
|
|
* @return String
|
|
|
|
|
*/
|
|
|
|
|
function loadDataFromRequest( $request ) {
|
|
|
|
|
if ( $request->getCheck( $this->mName ) ) {
|
|
|
|
|
$val = $request->getText( $this->mName );
|
|
|
|
|
|
|
|
|
|
if ( $val == 'other' ) {
|
|
|
|
|
$val = $request->getText( $this->mName . '-other' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $val;
|
|
|
|
|
} else {
|
|
|
|
|
return $this->getDefault();
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-11-19 13:08:16 +00:00
|
|
|
}
|