Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F529336
PhluxTransaction.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
PhluxTransaction.php
View Options
<?php
final
class
PhluxTransaction
extends
PhabricatorApplicationTransaction
{
const
TYPE_EDIT_KEY
=
'phlux:key'
;
const
TYPE_EDIT_VALUE
=
'phlux:value'
;
public
function
getApplicationName
()
{
return
'phlux'
;
}
public
function
getApplicationTransactionType
()
{
return
PhluxVariablePHIDType
::
TYPECONST
;
}
public
function
getTitle
()
{
$author_phid
=
$this
->
getAuthorPHID
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_EDIT_KEY
:
return
pht
(
'%s created this variable.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_EDIT_VALUE
:
return
pht
(
'%s updated this variable.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
return
parent
::
getTitle
();
}
public
function
hasChangeDetails
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_EDIT_VALUE
:
return
true
;
}
return
parent
::
hasChangeDetails
();
}
public
function
renderChangeDetails
(
PhabricatorUser
$viewer
)
{
return
$this
->
renderTextCorpusChangeDetails
(
$viewer
,
json_encode
(
$this
->
getOldValue
()),
json_encode
(
$this
->
getNewValue
()));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 2:04 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
102140
Default Alt Text
PhluxTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment