Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548361
PhabricatorCountdownTransaction.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
PhabricatorCountdownTransaction.php
View Options
<?php
final
class
PhabricatorCountdownTransaction
extends
PhabricatorModularTransaction
{
const
MAILTAG_DETAILS
=
'countdown:details'
;
const
MAILTAG_COMMENT
=
'countdown:comment'
;
const
MAILTAG_OTHER
=
'countdown:other'
;
public
function
getApplicationName
()
{
return
'countdown'
;
}
public
function
getApplicationTransactionType
()
{
return
PhabricatorCountdownCountdownPHIDType
::
TYPECONST
;
}
public
function
getApplicationTransactionCommentObject
()
{
return
new
PhabricatorCountdownTransactionComment
();
}
public
function
getBaseTransactionClass
()
{
return
'PhabricatorCountdownTransactionType'
;
}
public
function
getMailTags
()
{
$tags
=
parent
::
getMailTags
();
switch
(
$this
->
getTransactionType
())
{
case
PhabricatorTransactions
::
TYPE_COMMENT
:
$tags
[]
=
self
::
MAILTAG_COMMENT
;
break
;
case
PhabricatorCountdownTitleTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorCountdownEpochTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorCountdownDescriptionTransaction
::
TRANSACTIONTYPE
:
$tags
[]
=
self
::
MAILTAG_DETAILS
;
break
;
default
:
$tags
[]
=
self
::
MAILTAG_OTHER
;
break
;
}
return
$tags
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:48 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120814
Default Alt Text
PhabricatorCountdownTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment