Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93036147
PhabricatorUserConfiguredCustomField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 25, 17:39
Size
749 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 17:39 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22560683
Attached To
rPH Phabricator
PhabricatorUserConfiguredCustomField.php
View Options
<?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
();
}
protected
function
newStringIndexStorage
()
{
return
new
PhabricatorUserCustomFieldStringIndex
();
}
protected
function
newNumericIndexStorage
()
{
return
new
PhabricatorUserCustomFieldNumericIndex
();
}
}
Event Timeline
Log In to Comment