Page MenuHomec4science

PhabricatorSearchDatasourceField.php
No OneTemporary

File Metadata

Created
Mon, Jul 15, 21:39

PhabricatorSearchDatasourceField.php

<?php
final class PhabricatorSearchDatasourceField
extends PhabricatorSearchTokenizerField {
private $datasource;
private $conduitParameterType;
protected function newDatasource() {
return id(clone $this->datasource);
}
public function setDatasource(PhabricatorTypeaheadDatasource $datasource) {
$this->datasource = $datasource;
return $this;
}
public function setConduitParameterType(ConduitParameterType $type) {
$this->conduitParameterType = $type;
return $this;
}
protected function newConduitParameterType() {
if (!$this->conduitParameterType) {
return new ConduitStringListParameterType();
}
return $this->conduitParameterType;
}
}

Event Timeline