Page MenuHomec4science

PhabricatorSearchTextField.php
No OneTemporary

File Metadata

Created
Mon, Jul 15, 21:31

PhabricatorSearchTextField.php

<?php
final class PhabricatorSearchTextField
extends PhabricatorSearchField {
protected function getDefaultValue() {
return '';
}
protected function getValueFromRequest(AphrontRequest $request, $key) {
return $request->getStr($key);
}
protected function newControl() {
return new AphrontFormTextControl();
}
protected function newConduitParameterType() {
return new ConduitStringParameterType();
}
}

Event Timeline