3 final class PhabricatorPHIDsSearchField
4 extends PhabricatorSearchField
{
6 protected function getDefaultValue() {
10 protected function getValueFromRequest(AphrontRequest
$request, $key) {
11 return $request->getStrList($key);
14 protected function newControl() {
15 if (strlen($this->getValueForControl())) {
16 return new AphrontFormTextControl();
22 protected function getValueForControl() {
23 return implode(', ', parent
::getValueForControl());
26 protected function newConduitParameterType() {
27 return id(new ConduitPHIDListParameterType())
28 ->setAllowEmptyList(false);