Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96509325
ReleephDependsOnFieldSpecification.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, Dec 27, 10:12
Size
845 B
Mime Type
text/x-php
Expires
Sun, Dec 29, 10:12 (2 d)
Engine
blob
Format
Raw Data
Handle
23195310
Attached To
rPH Phabricator
ReleephDependsOnFieldSpecification.php
View Options
<?php
final
class
ReleephDependsOnFieldSpecification
extends
ReleephFieldSpecification
{
public
function
getFieldKey
()
{
return
'dependsOn'
;
}
public
function
getName
()
{
return
pht
(
'Depends On'
);
}
public
function
getRequiredHandlePHIDsForPropertyView
()
{
return
$this
->
getDependentRevisionPHIDs
();
}
public
function
renderPropertyViewValue
(
array
$handles
)
{
return
$this
->
renderHandleList
(
$handles
);
}
private
function
getDependentRevisionPHIDs
()
{
$requested_object
=
$this
->
getObject
()->
getRequestedObjectPHID
();
if
(!(
$requested_object
instanceof
DifferentialRevision
))
{
return
array
();
}
$revision
=
$requested_object
;
return
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$revision
->
getPHID
(),
DifferentialRevisionDependsOnRevisionEdgeType
::
EDGECONST
);
}
}
Event Timeline
Log In to Comment