@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 PhabricatorProjectConfiguredCustomField
4 extends PhabricatorProjectStandardCustomField
5 implements PhabricatorStandardCustomFieldInterface {
6
7 public function getStandardCustomFieldNamespace() {
8 return 'project';
9 }
10
11 public function createFields($object) {
12 return PhabricatorStandardCustomField::buildStandardFields(
13 $this,
14 PhabricatorEnv::getEnvConfig('projects.custom-field-definitions'));
15 }
16
17}