Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102114947
DifferentialBranchFieldSpecification.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 17, 06:19
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 19, 06:19 (2 d)
Engine
blob
Format
Raw Data
Handle
24284749
Attached To
rPH Phabricator
DifferentialBranchFieldSpecification.php
View Options
<?php
final
class
DifferentialBranchFieldSpecification
extends
DifferentialFieldSpecification
{
public
function
shouldAppearOnRevisionView
()
{
return
true
;
}
public
function
renderLabelForRevisionView
()
{
return
'Branch:'
;
}
public
function
renderValueForRevisionView
()
{
$diff
=
$this
->
getManualDiff
();
$branch
=
$diff
->
getBranch
();
$bookmark
=
$diff
->
getBookmark
();
$has_branch
=
(
$branch
!=
''
);
$has_bookmark
=
(
$bookmark
!=
''
);
if
(
$has_branch
&&
$has_bookmark
)
{
$branch
=
"{$bookmark} bookmark on {$branch} branch"
;
}
else
if
(
$has_bookmark
)
{
$branch
=
"{$bookmark} bookmark"
;
}
else
if
(!
$has_branch
)
{
return
null
;
}
return
$branch
;
}
public
function
renderValueForMail
(
$phase
)
{
$status
=
$this
->
getRevision
()->
getStatus
();
if
(
$status
!=
ArcanistDifferentialRevisionStatus
::
NEEDS_REVISION
&&
$status
!=
ArcanistDifferentialRevisionStatus
::
ACCEPTED
)
{
return
null
;
}
$diff
=
$this
->
getRevision
()->
loadActiveDiff
();
if
(
$diff
)
{
$branch
=
$diff
->
getBranch
();
if
(
$branch
)
{
return
"BRANCH
\n
$branch"
;
}
}
}
}
Event Timeline
Log In to Comment