@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhabricatorCustomFieldApplicationSearchDatasource
4 extends PhabricatorTypeaheadProxyDatasource {
5
6 public function getComponentDatasources() {
7 $datasources = parent::getComponentDatasources();
8
9 $datasources[] =
10 new PhabricatorCustomFieldApplicationSearchAnyFunctionDatasource();
11 $datasources[] =
12 new PhabricatorCustomFieldApplicationSearchNoneFunctionDatasource();
13
14 return $datasources;
15 }
16
17}