Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2348713
PhabricatorDashboardPanelTransaction.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
PhabricatorDashboardPanelTransaction.php
View Options
<?php
final
class
PhabricatorDashboardPanelTransaction
extends
PhabricatorApplicationTransaction
{
const
TYPE_NAME
=
'dashpanel:name'
;
const
TYPE_ARCHIVE
=
'dashboard:archive'
;
public
function
getApplicationName
()
{
return
'dashboard'
;
}
public
function
getApplicationTransactionType
()
{
return
PhabricatorDashboardPanelPHIDType
::
TYPECONST
;
}
public
function
getTitle
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$object_phid
=
$this
->
getObjectPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
$author_link
=
$this
->
renderHandleLink
(
$author_phid
);
$type
=
$this
->
getTransactionType
();
switch
(
$type
)
{
case
self
::
TYPE_NAME
:
if
(!
strlen
(
$old
))
{
return
pht
(
'%s created this panel.'
,
$author_link
);
}
else
{
return
pht
(
'%s renamed this panel from "%s" to "%s".'
,
$author_link
,
$old
,
$new
);
}
case
self
::
TYPE_ARCHIVE
:
if
(
$new
)
{
return
pht
(
'%s archived this panel.'
,
$author_link
);
}
else
{
return
pht
(
'%s activated this panel.'
,
$author_link
);
}
}
return
parent
::
getTitle
();
}
public
function
getTitleForFeed
(
PhabricatorFeedStory
$story
)
{
$author_phid
=
$this
->
getAuthorPHID
();
$object_phid
=
$this
->
getObjectPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
$author_link
=
$this
->
renderHandleLink
(
$author_phid
);
$object_link
=
$this
->
renderHandleLink
(
$object_phid
);
$type
=
$this
->
getTransactionType
();
switch
(
$type
)
{
case
self
::
TYPE_NAME
:
if
(!
strlen
(
$old
))
{
return
pht
(
'%s created dashboard panel %s.'
,
$author_link
,
$object_link
);
}
else
{
return
pht
(
'%s renamed dashboard panel %s from "%s" to "%s".'
,
$author_link
,
$object_link
,
$old
,
$new
);
}
case
self
::
TYPE_ARCHIVE
:
if
(
$new
)
{
return
pht
(
'%s archived dashboard panel %s.'
,
$author_link
,
$object_link
);
}
else
{
return
pht
(
'%s activated dashboard panel %s.'
,
$author_link
,
$object_link
);
}
}
return
parent
::
getTitleForFeed
(
$story
);
}
public
function
getColor
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_NAME
:
if
(!
strlen
(
$old
))
{
return
PhabricatorTransactions
::
COLOR_GREEN
;
}
break
;
}
return
parent
::
getColor
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 11:16 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
440597
Default Alt Text
PhabricatorDashboardPanelTransaction.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment