Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101431931
DifferentialRevisionHasTaskRelationship.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
Mon, Feb 10, 10:06
Size
848 B
Mime Type
text/x-php
Expires
Wed, Feb 12, 10:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24162750
Attached To
rPH Phabricator
DifferentialRevisionHasTaskRelationship.php
View Options
<?php
final
class
DifferentialRevisionHasTaskRelationship
extends
DifferentialRevisionRelationship
{
const
RELATIONSHIPKEY
=
'revision.has-task'
;
public
function
getEdgeConstant
()
{
return
DifferentialRevisionHasTaskEdgeType
::
EDGECONST
;
}
protected
function
getActionName
()
{
return
pht
(
'Edit Tasks'
);
}
protected
function
getActionIcon
()
{
return
'fa-anchor'
;
}
public
function
canRelateObjects
(
$src
,
$dst
)
{
return
(
$dst
instanceof
ManiphestTask
);
}
public
function
getDialogTitleText
()
{
return
pht
(
'Edit Related Tasks'
);
}
public
function
getDialogHeaderText
()
{
return
pht
(
'Current Tasks'
);
}
public
function
getDialogButtonText
()
{
return
pht
(
'Save Related Tasks'
);
}
protected
function
newRelationshipSource
()
{
return
new
ManiphestTaskRelationshipSource
();
}
}
Event Timeline
Log In to Comment