Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107059670
DrydockBlueprintCoreCustomField.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
Fri, Apr 4, 02:46
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 6, 02:46 (2 d)
Engine
blob
Format
Raw Data
Handle
25343198
Attached To
rPH Phabricator
DrydockBlueprintCoreCustomField.php
View Options
<?php
final
class
DrydockBlueprintCoreCustomField
extends
DrydockBlueprintCustomField
implements
PhabricatorStandardCustomFieldInterface
{
public
function
getStandardCustomFieldNamespace
()
{
return
'drydock:core'
;
}
public
function
createFields
(
$object
)
{
// If this is a generic object without an attached implementation (for
// example, via ApplicationSearch), just don't build any custom fields.
if
(!
$object
->
hasImplementation
())
{
return
array
();
}
$impl
=
$object
->
getImplementation
();
$specs
=
$impl
->
getFieldSpecifications
();
return
PhabricatorStandardCustomField
::
buildStandardFields
(
$this
,
$specs
);
}
public
function
shouldUseStorage
()
{
return
false
;
}
public
function
readValueFromObject
(
PhabricatorCustomFieldInterface
$object
)
{
$key
=
$this
->
getProxy
()->
getRawStandardFieldKey
();
$this
->
setValueFromStorage
(
$object
->
getDetail
(
$key
));
$this
->
didSetValueFromStorage
();
}
public
function
applyApplicationTransactionInternalEffects
(
PhabricatorApplicationTransaction
$xaction
)
{
$object
=
$this
->
getObject
();
$key
=
$this
->
getProxy
()->
getRawStandardFieldKey
();
$this
->
setValueFromApplicationTransactions
(
$xaction
->
getNewValue
());
$value
=
$this
->
getValueForStorage
();
$object
->
setDetail
(
$key
,
$value
);
}
public
function
getBlueprintFieldValue
()
{
return
$this
->
getProxy
()->
getFieldValue
();
}
}
Event Timeline
Log In to Comment