Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F448981
DifferentialChangesSinceLastUpdateField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 6:58 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67301
Default Alt Text
DifferentialChangesSinceLastUpdateField.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment