Viewing File: /home/ubuntu/code_review/phabricator/src/applications/search/field/PhabricatorPHIDsSearchField.php
<?php
final class PhabricatorPHIDsSearchField
extends PhabricatorSearchField {
protected function getDefaultValue() {
return array();
}
protected function getValueFromRequest(AphrontRequest $request, $key) {
return $request->getStrList($key);
}
protected function newControl() {
if (strlen($this->getValueForControl())) {
return new AphrontFormTextControl();
} else {
return null;
}
}
protected function getValueForControl() {
return implode(', ', parent::getValueForControl());
}
protected function newConduitParameterType() {
return id(new ConduitPHIDListParameterType())
->setAllowEmptyList(false);
}
}
Back to Directory
File Manager