mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
24 lines
501 B
PHP
24 lines
501 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorOwnersConfiguredCustomField
|
||
|
extends PhabricatorOwnersCustomField
|
||
|
implements PhabricatorStandardCustomFieldInterface {
|
||
|
|
||
|
public function getStandardCustomFieldNamespace() {
|
||
|
return 'owners';
|
||
|
}
|
||
|
|
||
|
public function createFields($object) {
|
||
|
$config = PhabricatorEnv::getEnvConfig(
|
||
|
'owners.custom-field-definitions',
|
||
|
array());
|
||
|
|
||
|
$fields = PhabricatorStandardCustomField::buildStandardFields(
|
||
|
$this,
|
||
|
$config);
|
||
|
|
||
|
return $fields;
|
||
|
}
|
||
|
|
||
|
}
|