Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104505909
ReleephRequestMailReceiver.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, Mar 10, 00:28
Size
761 B
Mime Type
text/x-php
Expires
Wed, Mar 12, 00:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24799817
Attached To
rPH Phabricator
ReleephRequestMailReceiver.php
View Options
<?php
final
class
ReleephRequestMailReceiver
extends
PhabricatorObjectMailReceiver
{
public
function
isEnabled
()
{
$app_class
=
'PhabricatorReleephApplication'
;
return
PhabricatorApplication
::
isClassInstalled
(
$app_class
);
}
protected
function
getObjectPattern
()
{
return
'RQ[1-9]
\d
*'
;
}
protected
function
loadObject
(
$pattern
,
PhabricatorUser
$viewer
)
{
$id
=
(
int
)
substr
(
$pattern
,
2
);
return
id
(
new
ReleephRequestQuery
())
->
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