Page MenuHomec4science

PhabricatorOwnersSearchField.php
No OneTemporary

File Metadata

Created
Thu, Oct 10, 00:31

PhabricatorOwnersSearchField.php

<?php
final class PhabricatorOwnersSearchField
extends PhabricatorSearchTokenizerField {
protected function getDefaultValue() {
return array();
}
protected function getValueFromRequest(AphrontRequest $request, $key) {
return $this->getUsersFromRequest($request, $key);
}
protected function newDatasource() {
return new PhabricatorPeopleOwnerDatasource();
}
protected function newConduitParameterType() {
return new ConduitUserListParameterType();
}
}

Event Timeline