Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102359579
PhabricatorProjectIconTransaction.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
Wed, Feb 19, 21:32
Size
987 B
Mime Type
text/x-php
Expires
Fri, Feb 21, 21:32 (2 d)
Engine
blob
Format
Raw Data
Handle
24338172
Attached To
rPH Phabricator
PhabricatorProjectIconTransaction.php
View Options
<?php
final
class
PhabricatorProjectIconTransaction
extends
PhabricatorProjectTransactionType
{
const
TRANSACTIONTYPE
=
'project:icon'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getIcon
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setIcon
(
$value
);
}
public
function
getTitle
()
{
$set
=
new
PhabricatorProjectIconSet
();
$new
=
$this
->
getNewValue
();
return
pht
(
"%s set this project's icon to %s."
,
$this
->
renderAuthor
(),
$this
->
renderValue
(
$set
->
getIconLabel
(
$new
)));
}
public
function
getTitleForFeed
()
{
$set
=
new
PhabricatorProjectIconSet
();
$new
=
$this
->
getNewValue
();
return
pht
(
'%s set the icon for %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
(),
$this
->
renderValue
(
$set
->
getIconLabel
(
$new
)));
}
public
function
getIcon
()
{
$new
=
$this
->
getNewValue
();
return
PhabricatorProjectIconSet
::
getIconIcon
(
$new
);
}
}
Event Timeline
Log In to Comment