Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102827707
PonderQuestionContentTransaction.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
Mon, Feb 24, 14:49
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 26, 14:49 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
24435794
Attached To
rPH Phabricator
PonderQuestionContentTransaction.php
View Options
<?php
final
class
PonderQuestionContentTransaction
extends
PonderQuestionTransactionType
{
const
TRANSACTIONTYPE
=
'ponder.question:content'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getContent
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setContent
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s updated the question details.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the question details for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO QUESTION 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