mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-21 03:08:40 +01:00
22 lines
531 B
PHP
22 lines
531 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorUserConfiguredCustomField
|
||
|
extends PhabricatorUserCustomField
|
||
|
implements PhabricatorStandardCustomFieldInterface {
|
||
|
|
||
|
public function getStandardCustomFieldNamespace() {
|
||
|
return 'user';
|
||
|
}
|
||
|
|
||
|
public function createFields() {
|
||
|
return PhabricatorStandardCustomField::buildStandardFields(
|
||
|
$this,
|
||
|
PhabricatorEnv::getEnvConfig('user.custom-field-definitions', array()));
|
||
|
}
|
||
|
|
||
|
public function newStorageObject() {
|
||
|
return new PhabricatorUserConfiguredCustomFieldStorage();
|
||
|
}
|
||
|
|
||
|
}
|