Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92161995
ReleephCommitMessageFieldSpecification.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
Sun, Nov 17, 21:57
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Nov 19, 21:57 (2 d)
Engine
blob
Format
Raw Data
Handle
22385470
Attached To
rPH Phabricator
ReleephCommitMessageFieldSpecification.php
View Options
<?php
final
class
ReleephCommitMessageFieldSpecification
extends
ReleephFieldSpecification
{
public
function
getFieldKey
()
{
return
'commit:apply'
;
}
public
function
getName
()
{
return
'__only_for_commit_message!'
;
}
public
function
shouldAppearInPropertyView
()
{
return
false
;
}
public
function
shouldAppearOnCommitMessage
()
{
return
true
;
}
public
function
renderLabelForCommitMessage
()
{
return
$this
->
renderCommonLabel
();
}
public
function
renderValueForCommitMessage
()
{
return
$this
->
renderCommonValue
(
DifferentialReleephRequestFieldSpecification
::
ACTION_PICKS
);
}
public
function
shouldAppearOnRevertMessage
()
{
return
true
;
}
public
function
renderLabelForRevertMessage
()
{
return
$this
->
renderCommonLabel
();
}
public
function
renderValueForRevertMessage
()
{
return
$this
->
renderCommonValue
(
DifferentialReleephRequestFieldSpecification
::
ACTION_REVERTS
);
}
private
function
renderCommonLabel
()
{
return
id
(
new
DifferentialReleephRequestFieldSpecification
())
->
renderLabelForCommitMessage
();
}
private
function
renderCommonValue
(
$action
)
{
$rq
=
'RQ'
.
$this
->
getReleephRequest
()->
getID
();
return
"{$action} {$rq}"
;
}
}
Event Timeline
Log In to Comment