Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F485992
PhabricatorPasteStatusTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorPasteStatusTransaction.php
View Options
<?php
final
class
PhabricatorPasteStatusTransaction
extends
PhabricatorPasteTransactionType
{
const
TRANSACTIONTYPE
=
'paste.status'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getStatus
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setStatus
(
$value
);
}
private
function
isActivate
()
{
return
(
$this
->
getNewValue
()
==
PhabricatorPaste
::
STATUS_ACTIVE
);
}
public
function
getIcon
()
{
if
(
$this
->
isActivate
())
{
return
'fa-check'
;
}
else
{
return
'fa-ban'
;
}
}
public
function
getColor
()
{
if
(
$this
->
isActivate
())
{
return
'green'
;
}
else
{
return
'indigo'
;
}
}
public
function
getTitle
()
{
if
(
$this
->
isActivate
())
{
return
pht
(
'%s activated this paste.'
,
$this
->
renderAuthor
());
}
else
{
return
pht
(
'%s archived this paste.'
,
$this
->
renderAuthor
());
}
}
public
function
getTitleForFeed
()
{
if
(
$this
->
isActivate
())
{
return
pht
(
'%s activated %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
else
{
return
pht
(
'%s archived %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, May 7, 5:18 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
90705
Default Alt Text
PhabricatorPasteStatusTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment