Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92304849
PhabricatorCalendarEventDescriptionTransaction.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
Tue, Nov 19, 06:17
Size
983 B
Mime Type
text/x-php
Expires
Thu, Nov 21, 06:17 (2 d)
Engine
blob
Format
Raw Data
Handle
22418246
Attached To
rPH Phabricator
PhabricatorCalendarEventDescriptionTransaction.php
View Options
<?php
final
class
PhabricatorCalendarEventDescriptionTransaction
extends
PhabricatorCalendarEventTransactionType
{
const
TRANSACTIONTYPE
=
'calendar.description'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getDescription
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDescription
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s updated the event description.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the event description for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
newChangeDetailView
()
{
$viewer
=
$this
->
getViewer
();
return
id
(
new
PhabricatorApplicationTransactionTextDiffDetailView
())
->
setViewer
(
$viewer
)
->
setOldText
(
$this
->
getOldValue
())
->
setNewText
(
$this
->
getNewValue
());
}
}
Event Timeline
Log In to Comment