Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92732013
PholioMockDescriptionTransaction.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
Sat, Nov 23, 05:55
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 05:55 (2 d)
Engine
blob
Format
Raw Data
Handle
22499866
Attached To
rPH Phabricator
PholioMockDescriptionTransaction.php
View Options
<?php
final
class
PholioMockDescriptionTransaction
extends
PholioMockTransactionType
{
const
TRANSACTIONTYPE
=
'description'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getDescription
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDescription
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
"%s updated the mock's description."
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the description for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
shouldHide
()
{
$old
=
$this
->
getOldValue
();
return
(
$old
===
null
);
}
public
function
hasChangeDetailView
()
{
return
true
;
}
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