Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106672567
HarbormasterBuildTransaction.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
Sat, Mar 29, 18:55
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Mar 31, 19:55 (2 d)
Engine
blob
Format
Raw Data
Handle
25249740
Attached To
rPH Phabricator
HarbormasterBuildTransaction.php
View Options
<?php
final
class
HarbormasterBuildTransaction
extends
PhabricatorApplicationTransaction
{
const
TYPE_CREATE
=
'harbormaster:build:create'
;
const
TYPE_COMMAND
=
'harbormaster:build:command'
;
public
function
getApplicationName
()
{
return
'harbormaster'
;
}
public
function
getApplicationTransactionType
()
{
return
HarbormasterPHIDTypeBuild
::
TYPECONST
;
}
public
function
getTitle
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_CREATE
:
return
pht
(
'%s created this build.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_COMMAND
:
switch
(
$new
)
{
case
HarbormasterBuildCommand
::
COMMAND_RESTART
:
return
pht
(
'%s restarted this build.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
HarbormasterBuildCommand
::
COMMAND_RESUME
:
return
pht
(
'%s resumed this build.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
HarbormasterBuildCommand
::
COMMAND_STOP
:
return
pht
(
'%s stopped this build.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
}
return
parent
::
getTitle
();
}
public
function
getIcon
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_CREATE
:
return
'fa-plus'
;
case
self
::
TYPE_COMMAND
:
switch
(
$new
)
{
case
HarbormasterBuildCommand
::
COMMAND_RESTART
:
return
'fa-backward'
;
case
HarbormasterBuildCommand
::
COMMAND_RESUME
:
return
'fa-play'
;
case
HarbormasterBuildCommand
::
COMMAND_STOP
:
return
'fa-stop'
;
}
}
return
parent
::
getIcon
();
}
public
function
getColor
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_CREATE
:
return
'green'
;
case
self
::
TYPE_COMMAND
:
switch
(
$new
)
{
case
HarbormasterBuildCommand
::
COMMAND_STOP
:
return
'red'
;
}
}
return
parent
::
getColor
();
}
}
Event Timeline
Log In to Comment