Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90707731
ManiphestMailEngineExtension.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
Mon, Nov 4, 01:20
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 6, 01:20 (2 d)
Engine
blob
Format
Raw Data
Handle
22122759
Attached To
rPH Phabricator
ManiphestMailEngineExtension.php
View Options
<?php
final
class
ManiphestMailEngineExtension
extends
PhabricatorMailEngineExtension
{
const
EXTENSIONKEY
=
'maniphest'
;
public
function
supportsObject
(
$object
)
{
return
(
$object
instanceof
ManiphestTask
);
}
public
function
newMailStampTemplates
(
$object
)
{
return
array
(
id
(
new
PhabricatorPHIDMailStamp
())
->
setKey
(
'author'
)
->
setLabel
(
pht
(
'Author'
)),
id
(
new
PhabricatorPHIDMailStamp
())
->
setKey
(
'task-owner'
)
->
setLabel
(
pht
(
'Task Owner'
)),
id
(
new
PhabricatorBoolMailStamp
())
->
setKey
(
'task-unassigned'
)
->
setLabel
(
pht
(
'Task Unassigned'
)),
id
(
new
PhabricatorStringMailStamp
())
->
setKey
(
'task-priority'
)
->
setLabel
(
pht
(
'Task Priority'
)),
id
(
new
PhabricatorStringMailStamp
())
->
setKey
(
'task-status'
)
->
setLabel
(
pht
(
'Task Status'
)),
id
(
new
PhabricatorStringMailStamp
())
->
setKey
(
'subtype'
)
->
setLabel
(
pht
(
'Subtype'
)),
);
}
public
function
newMailStamps
(
$object
,
array
$xactions
)
{
$editor
=
$this
->
getEditor
();
$viewer
=
$this
->
getViewer
();
$this
->
getMailStamp
(
'author'
)
->
setValue
(
$object
->
getAuthorPHID
());
$this
->
getMailStamp
(
'task-owner'
)
->
setValue
(
$object
->
getOwnerPHID
());
$this
->
getMailStamp
(
'task-unassigned'
)
->
setValue
(!
$object
->
getOwnerPHID
());
$this
->
getMailStamp
(
'task-priority'
)
->
setValue
(
$object
->
getPriority
());
$this
->
getMailStamp
(
'task-status'
)
->
setValue
(
$object
->
getStatus
());
$this
->
getMailStamp
(
'subtype'
)
->
setValue
(
$object
->
getSubtype
());
}
}
Event Timeline
Log In to Comment