Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94046084
DifferentialChangesSinceLastUpdateField.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, 11:53
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Dec 5, 11:53 (1 d, 6 h)
Engine
blob
Format
Raw Data
Handle
22722508
Attached To
rPH Phabricator
DifferentialChangesSinceLastUpdateField.php
View Options
<?php
final
class
DifferentialChangesSinceLastUpdateField
extends
DifferentialCustomField
{
public
function
getFieldKey
()
{
return
'differential:changes-since-last-update'
;
}
public
function
getFieldName
()
{
return
pht
(
'Changes Since Last Update'
);
}
public
function
getFieldDescription
()
{
return
pht
(
'Links to changes since the last update in email.'
);
}
public
function
shouldAppearInTransactionMail
()
{
return
true
;
}
public
function
updateTransactionMailBody
(
PhabricatorMetaMTAMailBody
$body
,
PhabricatorApplicationTransactionEditor
$editor
,
array
$xactions
)
{
if
(
$editor
->
getIsNewObject
())
{
return
;
}
if
(
$editor
->
getIsCloseByCommit
())
{
return
;
}
$xaction
=
$editor
->
getDiffUpdateTransaction
(
$xactions
);
if
(!
$xaction
)
{
return
;
}
$original
=
id
(
new
DifferentialDiffQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
array
(
$xaction
->
getOldValue
()))
->
executeOne
();
if
(!
$original
)
{
return
;
}
$revision
=
$this
->
getObject
();
$current
=
$revision
->
getActiveDiff
();
$old_id
=
$original
->
getID
();
$new_id
=
$current
->
getID
();
$uri
=
'/'
.
$revision
->
getMonogram
().
'?vs='
.
$old_id
.
'&id='
.
$new_id
;
$uri
=
PhabricatorEnv
::
getProductionURI
(
$uri
);
$body
->
addLinkSection
(
pht
(
'CHANGES SINCE LAST UPDATE'
),
$uri
);
}
}
Event Timeline
Log In to Comment