Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101092024
PhabricatorMacroMailReceiver.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, Feb 5, 16:19
Size
771 B
Mime Type
text/x-php
Expires
Fri, Feb 7, 16:19 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24054526
Attached To
rPH Phabricator
PhabricatorMacroMailReceiver.php
View Options
<?php
final
class
PhabricatorMacroMailReceiver
extends
PhabricatorObjectMailReceiver
{
public
function
isEnabled
()
{
$app_class
=
'PhabricatorApplicationManiphest'
;
return
PhabricatorApplication
::
isClassInstalled
(
$app_class
);
}
protected
function
getObjectPattern
()
{
return
'MCRO[1-9]
\d
*'
;
}
protected
function
loadObject
(
$pattern
,
PhabricatorUser
$viewer
)
{
$id
=
(
int
)
substr
(
$pattern
,
4
);
return
id
(
new
PhabricatorMacroQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
}
protected
function
processReceivedObjectMail
(
PhabricatorMetaMTAReceivedMail
$mail
,
PhabricatorLiskDAO
$object
,
PhabricatorUser
$sender
)
{
// TODO: For now, we just drop this mail on the floor.
}
}
Event Timeline
Log In to Comment