MediaWiki master
XmlSelect.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Xml;
24
26
30class XmlSelect {
31 protected $options = [];
32 protected $default = false;
33 protected $tagName = 'select';
34 protected $attributes = [];
35
36 public function __construct( $name = false, $id = false, $default = false ) {
37 if ( $name ) {
38 $this->setAttribute( 'name', $name );
39 }
40
41 if ( $id ) {
42 $this->setAttribute( 'id', $id );
43 }
44
45 if ( $default !== false ) {
46 $this->default = $default;
47 }
48 }
49
53 public function setDefault( $default ) {
54 $this->default = $default;
55 }
56
60 public function setTagName( $tagName ) {
61 $this->tagName = $tagName;
62 }
63
68 public function setAttribute( $name, $value ) {
69 $this->attributes[$name] = $value;
70 }
71
76 public function getAttribute( $name ) {
77 return $this->attributes[$name] ?? null;
78 }
79
84 public function addOption( $label, $value = false ) {
85 $value = $value !== false ? $value : $label;
86 $this->options[] = [ $label => $value ];
87 }
88
96 public function addOptions( $options ) {
97 $this->options[] = $options;
98 }
99
109 public static function formatOptions( $options, $default = false ) {
110 $data = '';
111
112 foreach ( $options as $label => $value ) {
113 if ( is_array( $value ) ) {
114 $contents = self::formatOptions( $value, $default );
115 $data .= Html::rawElement( 'optgroup', [ 'label' => $label ], $contents ) . "\n";
116 } else {
117 // If $default is an array, then the <select> probably has the multiple attribute,
118 // so we should check if each $value is in $default, rather than checking if
119 // $value is equal to $default.
120 $selected = is_array( $default ) ? in_array( $value, $default ) : $value === $default;
121 $data .= Xml::option( $label, $value, $selected ) . "\n";
122 }
123 }
124
125 return $data;
126 }
127
131 public function getHTML() {
132 $contents = '';
133
134 foreach ( $this->options as $options ) {
135 $contents .= self::formatOptions( $options, $this->default );
136 }
137
138 return Html::rawElement( $this->tagName, $this->attributes, rtrim( $contents ) );
139 }
140
150 public static function parseOptionsMessage( string $msg ): array {
151 $options = [];
152 foreach ( explode( ',', $msg ) as $option ) {
153 // Normalize options that only have one part.
154 if ( strpos( $option, ':' ) === false ) {
155 $option = "$option:$option";
156 }
157 // Extract the two parts.
158 [ $label, $value ] = explode( ':', $option );
159 $options[ trim( $label ) ] = trim( $value );
160 }
161 return $options;
162 }
163}
165class_alias( XmlSelect::class, 'XmlSelect' );
This class is a collection of static functions that serve two purposes:
Definition Html.php:56
Class for generating HTML <select> or <datalist> elements.
Definition XmlSelect.php:30
addOption( $label, $value=false)
Definition XmlSelect.php:84
static formatOptions( $options, $default=false)
This accepts an array of form: label => value label => ( label => value, label => value )
__construct( $name=false, $id=false, $default=false)
Definition XmlSelect.php:36
setAttribute( $name, $value)
Definition XmlSelect.php:68
static parseOptionsMessage(string $msg)
Parse labels and values out of a comma- and colon-separated list of options, such as is used for expi...
addOptions( $options)
This accepts an array of form label => value label => ( label => value, label => value )
Definition XmlSelect.php:96
static option( $text, $value=null, $selected=false, $attribs=[])
Convenience function to build an HTML drop-down list item.
Definition Xml.php:521