2011-01-16 13:51:39 -08:00
|
|
|
<?php
|
|
|
|
|
2012-03-13 16:21:04 -07:00
|
|
|
final class AphrontFormSelectControl extends AphrontFormControl {
|
2011-01-16 13:51:39 -08:00
|
|
|
|
|
|
|
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() {
|
2012-02-14 17:00:12 -08:00
|
|
|
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()) {
|
|
|
|
|
2012-04-09 17:15:02 -07:00
|
|
|
$option_tags = self::renderOptions($selected, $options);
|
2011-01-16 13:51:39 -08:00
|
|
|
|
2012-04-04 12:14:10 -07:00
|
|
|
return javelin_render_tag(
|
2011-01-16 13:51:39 -08:00
|
|
|
'select',
|
2012-02-14 17:00:12 -08:00
|
|
|
$attrs,
|
|
|
|
implode("\n", $option_tags));
|
2011-01-16 13:51:39 -08:00
|
|
|
}
|
|
|
|
|
2012-04-09 17:15:02 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-01-16 13:51:39 -08:00
|
|
|
}
|