Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93219844
PhamePostBodyTransaction.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
Wed, Nov 27, 03:05
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 03:05 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22558307
Attached To
rPH Phabricator
PhamePostBodyTransaction.php
View Options
<?php
final
class
PhamePostBodyTransaction
extends
PhamePostTransactionType
{
const
TRANSACTIONTYPE
=
'phame.post.body'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getBody
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setBody
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s updated the post content.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the post content for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO POST CONTENT'
);
}
public
function
newChangeDetailView
()
{
$viewer
=
$this
->
getViewer
();
return
id
(
new
PhabricatorApplicationTransactionTextDiffDetailView
())
->
setViewer
(
$viewer
)
->
setOldText
(
$this
->
getOldValue
())
->
setNewText
(
$this
->
getNewValue
());
}
public
function
newRemarkupChanges
()
{
$changes
=
array
();
$changes
[]
=
$this
->
newRemarkupChange
()
->
setOldValue
(
$this
->
getOldValue
())
->
setNewValue
(
$this
->
getNewValue
());
return
$changes
;
}
public
function
getIcon
()
{
return
'fa-file-text-o'
;
}
}
Event Timeline
Log In to Comment