mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 11:52:40 +01:00
22 lines
506 B
PHP
22 lines
506 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSearchSubscribersField
|
||
|
extends PhabricatorSearchTokenizerField {
|
||
|
|
||
|
protected function getDefaultValue() {
|
||
|
return array();
|
||
|
}
|
||
|
|
||
|
protected function getValueFromRequest(AphrontRequest $request, $key) {
|
||
|
$allow_types = array(
|
||
|
PhabricatorProjectProjectPHIDType::TYPECONST,
|
||
|
);
|
||
|
return $this->getUsersFromRequest($request, $key, $allow_types);
|
||
|
}
|
||
|
|
||
|
protected function newDatasource() {
|
||
|
return new PhabricatorMetaMTAMailableFunctionDatasource();
|
||
|
}
|
||
|
|
||
|
}
|