Summary: Everything here now should properly handle plain strings and safe HTML. Test Plan: /settings/panel/display/ Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4826
53 lines
1.0 KiB
PHP
53 lines
1.0 KiB
PHP
<?php
|
|
|
|
final class AphrontFormToggleButtonsControl extends AphrontFormControl {
|
|
|
|
private $baseURI;
|
|
private $param;
|
|
|
|
private $buttons;
|
|
|
|
public function setBaseURI(PhutilURI $uri, $param) {
|
|
$this->baseURI = $uri;
|
|
$this->param = $param;
|
|
return $this;
|
|
}
|
|
|
|
public function setButtons(array $buttons) {
|
|
$this->buttons = $buttons;
|
|
return $this;
|
|
}
|
|
|
|
protected function getCustomControlClass() {
|
|
return 'aphront-form-control-togglebuttons';
|
|
}
|
|
|
|
protected function renderInput() {
|
|
if (!$this->baseURI) {
|
|
throw new Exception('Call setBaseURI() before render()!');
|
|
}
|
|
|
|
$selected = $this->getValue();
|
|
|
|
$out = array();
|
|
foreach ($this->buttons as $value => $label) {
|
|
if ($value == $selected) {
|
|
$more = ' toggle-selected toggle-fixed';
|
|
} else {
|
|
$more = null;
|
|
}
|
|
|
|
$out[] = phutil_tag(
|
|
'a',
|
|
array(
|
|
'class' => 'toggle'.$more,
|
|
'href' => $this->baseURI->alter($this->param, $value),
|
|
),
|
|
$label);
|
|
}
|
|
|
|
return $out;
|
|
}
|
|
|
|
}
|