Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101515008
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
Tue, Feb 11, 04:51
Size
749 B
Mime Type
text/x-php
Expires
Thu, Feb 13, 04:51 (2 d)
Engine
blob
Format
Raw Data
Handle
24172516
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