Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122867322
DifferentialDependenciesField.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, Jul 22, 15:22
Size
895 B
Mime Type
text/x-php
Expires
Thu, Jul 24, 15:22 (2 d)
Engine
blob
Format
Raw Data
Handle
27558204
Attached To
rPH Phabricator
DifferentialDependenciesField.php
View Options
<?php
final
class
DifferentialDependenciesField
extends
DifferentialCustomField
{
public
function
getFieldKey
()
{
return
'differential:dependencies'
;
}
public
function
getFieldName
()
{
return
pht
(
'Dependencies'
);
}
public
function
canDisableField
()
{
return
false
;
}
public
function
getFieldDescription
()
{
return
pht
(
'Lists revisions this one is depended on by.'
);
}
public
function
shouldAppearInPropertyView
()
{
return
true
;
}
public
function
renderPropertyViewLabel
()
{
return
$this
->
getFieldName
();
}
public
function
getRequiredHandlePHIDsForPropertyView
()
{
return
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$this
->
getObject
()->
getPHID
(),
PhabricatorEdgeConfig
::
TYPE_DREV_DEPENDED_ON_BY_DREV
);
}
public
function
renderPropertyViewValue
(
array
$handles
)
{
return
$this
->
renderHandleList
(
$handles
);
}
}
Event Timeline
Log In to Comment