Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F971406
PhabricatorCustomFieldAttachment.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
806 B
Referenced Files
None
Subscribers
None
PhabricatorCustomFieldAttachment.php
View Options
<?php
/**
* Convenience class which simplifies the implementation of
* @{interface:PhabricatorCustomFieldInterface} by obscuring the details of how
* custom fields are stored.
*
* Generally, you should not use this class directly. It is used by
* @{class:PhabricatorCustomField} to manage field storage on objects.
*/
final
class
PhabricatorCustomFieldAttachment
{
private
$lists
=
array
();
public
function
addCustomFieldList
(
$role
,
PhabricatorCustomFieldList
$list
)
{
$this
->
lists
[
$role
]
=
$list
;
return
$this
;
}
public
function
getCustomFieldList
(
$role
)
{
if
(
empty
(
$this
->
lists
[
$role
]))
{
throw
new
PhabricatorCustomFieldNotAttachedException
(
pht
(
"Role list '%s' is not available!"
,
$role
));
}
return
$this
->
lists
[
$role
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 5:45 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
221774
Default Alt Text
PhabricatorCustomFieldAttachment.php (806 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment