Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106098396
PhamePostHeaderImageTransaction.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, Mar 22, 09:32
Size
702 B
Mime Type
text/x-php
Expires
Mon, Mar 24, 09:32 (2 d)
Engine
blob
Format
Raw Data
Handle
25059013
Attached To
rPH Phabricator
PhamePostHeaderImageTransaction.php
View Options
<?php
final
class
PhamePostHeaderImageTransaction
extends
PhamePostTransactionType
{
const
TRANSACTIONTYPE
=
'phame.post.headerimage'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getHeaderImagePHID
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setHeaderImagePHID
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s changed the header image for this post.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s changed the header image for post %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
getIcon
()
{
return
'fa-camera'
;
}
}
Event Timeline
Log In to Comment