Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94022866
ManiphestTaskHasCommitRelationship.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, Dec 3, 07:53
Size
851 B
Mime Type
text/x-php
Expires
Thu, Dec 5, 07:53 (2 d)
Engine
blob
Format
Raw Data
Handle
22711198
Attached To
rPH Phabricator
ManiphestTaskHasCommitRelationship.php
View Options
<?php
final
class
ManiphestTaskHasCommitRelationship
extends
ManiphestTaskRelationship
{
const
RELATIONSHIPKEY
=
'task.has-commit'
;
public
function
getEdgeConstant
()
{
return
ManiphestTaskHasCommitEdgeType
::
EDGECONST
;
}
protected
function
getActionName
()
{
return
pht
(
'Edit Commits'
);
}
protected
function
getActionIcon
()
{
return
'fa-code'
;
}
public
function
canRelateObjects
(
$src
,
$dst
)
{
return
(
$dst
instanceof
PhabricatorRepositoryCommit
);
}
public
function
getDialogTitleText
()
{
return
pht
(
'Edit Related Commits'
);
}
public
function
getDialogHeaderText
()
{
return
pht
(
'Current Commits'
);
}
public
function
getDialogButtonText
()
{
return
pht
(
'Save Related Commits'
);
}
protected
function
newRelationshipSource
()
{
return
new
DiffusionCommitRelationshipSource
();
}
}
Event Timeline
Log In to Comment