Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1070982
PhabricatorConfigTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorConfigTransaction.php
View Options
<?php
final
class
PhabricatorConfigTransaction
extends
PhabricatorApplicationTransaction
{
const
TYPE_EDIT
=
'config:edit'
;
public
function
getApplicationName
()
{
return
'config'
;
}
public
function
getApplicationTransactionType
()
{
return
PhabricatorConfigPHIDTypeConfig
::
TYPECONST
;
}
public
function
getApplicationTransactionCommentObject
()
{
return
null
;
}
public
function
getTitle
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_EDIT
:
// TODO: After T2213 show the actual values too; for now, we don't
// have the tools to do it without making a bit of a mess of it.
$old_del
=
idx
(
$old
,
'deleted'
);
$new_del
=
idx
(
$new
,
'deleted'
);
if
(
$old_del
&&
!
$new_del
)
{
return
pht
(
'%s created this configuration entry.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
else
if
(!
$old_del
&&
$new_del
)
{
return
pht
(
'%s deleted this configuration entry.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
else
if
(
$old_del
&&
$new_del
)
{
// This is a bug.
return
pht
(
'%s deleted this configuration entry (again?).'
,
$this
->
renderHandleLink
(
$author_phid
));
}
else
{
return
pht
(
'%s edited this configuration entry.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
break
;
}
return
parent
::
getTitle
();
}
public
function
getIcon
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_EDIT
:
return
'edit'
;
}
return
parent
::
getIcon
();
}
public
function
hasChangeDetails
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_EDIT
:
return
true
;
}
return
parent
::
hasChangeDetails
();
}
public
function
renderChangeDetails
(
PhabricatorUser
$viewer
)
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
if
(
$old
[
'deleted'
])
{
$old_text
=
''
;
}
else
{
$old_text
=
PhabricatorConfigJSON
::
prettyPrintJSON
(
$old
[
'value'
]);
}
if
(
$new
[
'deleted'
])
{
$new_text
=
''
;
}
else
{
$new_text
=
PhabricatorConfigJSON
::
prettyPrintJSON
(
$new
[
'value'
]);
}
return
$this
->
renderTextCorpusChangeDetails
(
$viewer
,
$old_text
,
$new_text
);
}
public
function
getColor
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_EDIT
:
$old_del
=
idx
(
$old
,
'deleted'
);
$new_del
=
idx
(
$new
,
'deleted'
);
if
(
$old_del
&&
!
$new_del
)
{
return
PhabricatorTransactions
::
COLOR_GREEN
;
}
else
if
(!
$old_del
&&
$new_del
)
{
return
PhabricatorTransactions
::
COLOR_RED
;
}
else
{
return
PhabricatorTransactions
::
COLOR_BLUE
;
}
break
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jun 29, 4:00 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
262556
Default Alt Text
PhabricatorConfigTransaction.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment