Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93177807
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
Tue, Nov 26, 19:21
Size
643 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 19:21 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22587171
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
'Y[1-9]
\d
*'
;
}
protected
function
loadObject
(
$pattern
,
PhabricatorUser
$viewer
)
{
$id
=
(
int
)
substr
(
$pattern
,
1
);
return
id
(
new
ReleephRequestQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
}
protected
function
getTransactionReplyHandler
()
{
return
new
ReleephRequestReplyHandler
();
}
}
Event Timeline
Log In to Comment