One shortcoming in HTMLForm is that fields that use the 'options' parameter (e.g. <select>) have no easy way for the individual labels to be localized. This change adds a new parameter type, 'options-messages', where the keys are message keys rather than bare strings (similar to the difference between 'label' and 'label-message'). It also abstracts out the fetching of the various option parameters, and changes the necessary field classes to use it. Change-Id: If4175332405d26c7ff2e8fbe100bcad61762ce6f
79 lines
1.9 KiB
PHP
79 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Select dropdown field, with an additional "other" textbox.
|
|
*/
|
|
class HTMLSelectOrOtherField extends HTMLTextField {
|
|
function __construct( $params ) {
|
|
parent::__construct( $params );
|
|
$this->getOptions();
|
|
if ( !in_array( 'other', $this->mOptions, true ) ) {
|
|
$msg =
|
|
isset( $params['other'] )
|
|
? $params['other']
|
|
: wfMessage( 'htmlform-selectorother-other' )->text();
|
|
$this->mOptions[$msg] = 'other';
|
|
}
|
|
|
|
}
|
|
|
|
function getInputHTML( $value ) {
|
|
$valInSelect = false;
|
|
|
|
if ( $value !== false ) {
|
|
$valInSelect = in_array( $value, HTMLFormField::flattenOptions( $this->getOptions() ) );
|
|
}
|
|
|
|
$selected = $valInSelect ? $value : 'other';
|
|
|
|
$select = new XmlSelect( $this->mName, $this->mID, $selected );
|
|
$select->addOptions( $this->getOptions() );
|
|
|
|
$select->setAttribute( 'class', 'mw-htmlform-select-or-other' );
|
|
|
|
$tbAttribs = array( 'id' => $this->mID . '-other', 'size' => $this->getSize() );
|
|
|
|
if ( !empty( $this->mParams['disabled'] ) ) {
|
|
$select->setAttribute( 'disabled', 'disabled' );
|
|
$tbAttribs['disabled'] = 'disabled';
|
|
}
|
|
|
|
if ( isset( $this->mParams['tabindex'] ) ) {
|
|
$select->setAttribute( 'tabindex', $this->mParams['tabindex'] );
|
|
$tbAttribs['tabindex'] = $this->mParams['tabindex'];
|
|
}
|
|
|
|
$select = $select->getHTML();
|
|
|
|
if ( isset( $this->mParams['maxlength'] ) ) {
|
|
$tbAttribs['maxlength'] = $this->mParams['maxlength'];
|
|
}
|
|
|
|
if ( $this->mClass !== '' ) {
|
|
$tbAttribs['class'] = $this->mClass;
|
|
}
|
|
|
|
$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();
|
|
}
|
|
}
|
|
}
|