Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110329656
PonderAnswerContentTransaction.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
Fri, Apr 25, 20:02
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 27, 20:02 (2 d)
Engine
blob
Format
Raw Data
Handle
25784224
Attached To
rPH Phabricator
PonderAnswerContentTransaction.php
View Options
<?php
final
class
PonderAnswerContentTransaction
extends
PonderAnswerTransactionType
{
const
TRANSACTIONTYPE
=
'ponder.answer:content'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getContent
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setContent
(
$value
);
}
public
function
getTitle
()
{
$old
=
$this
->
getOldValue
();
if
(!
strlen
(
$old
))
{
return
pht
(
'%s added an answer.'
,
$this
->
renderAuthor
());
}
return
pht
(
'%s updated the answer details.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
$old
=
$this
->
getOldValue
();
if
(!
strlen
(
$old
))
{
return
pht
(
'%s added %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
return
pht
(
'%s updated the answer details for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO ANSWER DETAILS'
);
}
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
;
}
}
Event Timeline
Log In to Comment