2011-01-16 22:51:39 +01:00
|
|
|
<?php
|
|
|
|
|
2012-03-14 00:21:04 +01:00
|
|
|
final class AphrontFormSelectControl extends AphrontFormControl {
|
2011-01-16 22:51:39 +01: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-15 02:00:12 +01: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-10 02:15:02 +02:00
|
|
|
$option_tags = self::renderOptions($selected, $options);
|
2011-01-16 22:51:39 +01:00
|
|
|
|
2012-04-04 21:14:10 +02:00
|
|
|
return javelin_render_tag(
|
2011-01-16 22:51:39 +01:00
|
|
|
'select',
|
2012-02-15 02:00:12 +01:00
|
|
|
$attrs,
|
|
|
|
implode("\n", $option_tags));
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
|
2012-04-10 02:15:02 +02: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 {
|
2013-01-18 03:43:35 +01:00
|
|
|
$tags[] = phutil_tag(
|
2012-04-10 02:15:02 +02:00
|
|
|
'option',
|
|
|
|
array(
|
|
|
|
'selected' => ($value == $selected) ? 'selected' : null,
|
|
|
|
'value' => $value,
|
|
|
|
),
|
2013-01-18 03:43:35 +01:00
|
|
|
$thing);
|
2012-04-10 02:15:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $tags;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|