Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93030521
PhabricatorSlowvoteDescriptionTransaction.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, Nov 25, 16:39
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 16:39 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22558110
Attached To
rPH Phabricator
PhabricatorSlowvoteDescriptionTransaction.php
View Options
<?php
final
class
PhabricatorSlowvoteDescriptionTransaction
extends
PhabricatorSlowvoteTransactionType
{
const
TRANSACTIONTYPE
=
'vote:description'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getDescription
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDescription
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s updated the description for this poll.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
$old
=
$this
->
getOldValue
();
if
(
$old
===
null
)
{
return
pht
(
'%s set the description of %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
else
{
return
pht
(
'%s edited the description of %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO POLL DESCRIPTION'
);
}
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