Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99334408
PhabricatorCommitBranchesField.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
Thu, Jan 23, 14:23
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 25, 14:23 (2 d)
Engine
blob
Format
Raw Data
Handle
23774121
Attached To
rPH Phabricator
PhabricatorCommitBranchesField.php
View Options
<?php
final
class
PhabricatorCommitBranchesField
extends
PhabricatorCommitCustomField
{
public
function
getFieldKey
()
{
return
'diffusion:branches'
;
}
public
function
getFieldName
()
{
return
pht
(
'Branches'
);
}
public
function
getFieldDescription
()
{
return
pht
(
'Shows branches a commit appears on in email.'
);
}
public
function
shouldAppearInTransactionMail
()
{
return
true
;
}
public
function
updateTransactionMailBody
(
PhabricatorMetaMTAMailBody
$body
,
PhabricatorApplicationTransactionEditor
$editor
,
array
$xactions
)
{
$params
=
array
(
'contains'
=>
$this
->
getObject
()->
getCommitIdentifier
(),
'repository'
=>
$this
->
getObject
()->
getRepository
()->
getPHID
(),
);
try
{
$branches_raw
=
id
(
new
ConduitCall
(
'diffusion.branchquery'
,
$params
))
->
setUser
(
$this
->
getViewer
())
->
execute
();
$branches
=
DiffusionRepositoryRef
::
loadAllFromDictionaries
(
$branches_raw
);
if
(!
$branches
)
{
return
;
}
$branch_names
=
mpull
(
$branches
,
'getShortName'
);
sort
(
$branch_names
);
$branch_text
=
implode
(
', '
,
$branch_names
);
}
catch
(
Exception
$ex
)
{
$branch_text
=
pht
(
'<%s: %s>'
,
get_class
(
$ex
),
$ex
->
getMessage
());
}
$body
->
addTextSection
(
pht
(
'BRANCHES'
),
$branch_text
);
}
}
Event Timeline
Log In to Comment