7 public function validate( $value, $alldata ) {
8 $p = parent::validate( $value, $alldata );
16 if ( in_array( strval( $value ), $validOptions,
true ) ) {
19 return $this->
msg(
'htmlform-select-badoption' );
24 $select =
new XmlSelect( $this->mName, $this->mID, strval( $value ) );
26 if ( !empty( $this->mParams[
'disabled'] ) ) {
27 $select->setAttribute(
'disabled',
'disabled' );
30 $allowedParams = [
'tabindex',
'size' ];
32 foreach ( $customParams as $name => $value ) {
33 $select->setAttribute( $name, $value );
36 if ( $this->mClass !==
'' ) {
37 $select->setAttribute(
'class', $this->mClass );
42 return $select->getHTML();
47 $allowedParams = [
'tabindex' ];
48 $attribs = OOUI\Element::configFromHtmlAttributes(
52 if ( $this->mClass !==
'' ) {
56 if ( !empty( $this->mParams[
'disabled'] ) ) {
60 return new OOUI\DropdownInputWidget( [
61 'name' => $this->mName,
64 'value' => strval( $value ),
65 'disabled' => $disabled,