options = $options; return $this; } public function getOptions() { return $this->options; } protected function getDefaultValue() { return null; } protected function getValueFromRequest(AphrontRequest $request, $key) { return $request->getStr($key); } protected function newControl() { return id(new AphrontFormSelectControl()) ->setOptions($this->getOptions()); } }