Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122198844
ManiphestTransactionType.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
Wed, Jul 16, 13:28
Size
973 B
Mime Type
text/x-php
Expires
Fri, Jul 18, 13:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27448482
Attached To
rPH Phabricator
ManiphestTransactionType.php
View Options
<?php
/**
* @group maniphest
*/
final
class
ManiphestTransactionType
extends
ManiphestConstants
{
const
TYPE_NONE
=
'comment'
;
const
TYPE_STATUS
=
'status'
;
const
TYPE_OWNER
=
'reassign'
;
const
TYPE_CCS
=
'ccs'
;
const
TYPE_PROJECTS
=
'projects'
;
const
TYPE_PRIORITY
=
'priority'
;
const
TYPE_ATTACH
=
'attach'
;
const
TYPE_EDGE
=
'edge'
;
const
TYPE_TITLE
=
'title'
;
const
TYPE_DESCRIPTION
=
'description'
;
const
TYPE_AUXILIARY
=
'aux'
;
public
static
function
getTransactionTypeMap
()
{
return
array
(
self
::
TYPE_NONE
=>
pht
(
'Comment'
),
self
::
TYPE_STATUS
=>
pht
(
'Close Task'
),
self
::
TYPE_OWNER
=>
pht
(
'Reassign / Claim'
),
self
::
TYPE_CCS
=>
pht
(
'Add CCs'
),
self
::
TYPE_PRIORITY
=>
pht
(
'Change Priority'
),
self
::
TYPE_ATTACH
=>
pht
(
'Upload File'
),
self
::
TYPE_PROJECTS
=>
pht
(
'Associate Projects'
),
);
}
}
Event Timeline
Log In to Comment