Page MenuHomePhorge

No OneTemporary

diff --git a/src/view/form/control/select/AphrontFormSelectControl.php b/src/view/form/control/select/AphrontFormSelectControl.php
index f1b84aa0a7..59f18d4ea4 100644
--- a/src/view/form/control/select/AphrontFormSelectControl.php
+++ b/src/view/form/control/select/AphrontFormSelectControl.php
@@ -1,69 +1,83 @@
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
final class AphrontFormSelectControl extends AphrontFormControl {
protected function getCustomControlClass() {
return 'aphront-form-control-select';
}
private $options;
public function setOptions(array $options) {
$this->options = $options;
return $this;
}
public function getOptions() {
return $this->options;
}
protected function renderInput() {
return self::renderSelectTag(
$this->getValue(),
$this->getOptions(),
array(
'name' => $this->getName(),
'disabled' => $this->getDisabled() ? 'disabled' : null,
'id' => $this->getID(),
));
}
public static function renderSelectTag(
$selected,
array $options,
array $attrs = array()) {
- $option_tags = array();
- foreach ($options as $value => $label) {
- $option_tags[] = phutil_render_tag(
- 'option',
- array(
- 'selected' => ($value == $selected) ? 'selected' : null,
- 'value' => $value,
- ),
- phutil_escape_html($label));
- }
+ $option_tags = self::renderOptions($selected, $options);
return javelin_render_tag(
'select',
$attrs,
implode("\n", $option_tags));
}
+ private static function renderOptions($selected, array $options) {
+ $tags = array();
+ foreach ($options as $value => $thing) {
+ if (is_array($thing)) {
+ $tags[] = phutil_render_tag(
+ 'optgroup',
+ array(
+ 'label' => $value,
+ ),
+ implode("\n", self::renderOptions($selected, $thing)));
+ } else {
+ $tags[] = phutil_render_tag(
+ 'option',
+ array(
+ 'selected' => ($value == $selected) ? 'selected' : null,
+ 'value' => $value,
+ ),
+ phutil_escape_html($thing));
+ }
+ }
+ return $tags;
+ }
+
}

File Metadata

Mime Type
text/x-diff
Expires
Sun, Jan 19, 18:15 (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127345
Default Alt Text
(2 KB)

Event Timeline