Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92686808
PonderAnswerMailReceiver.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
Fri, Nov 22, 18:46
Size
639 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 18:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22486568
Attached To
rPH Phabricator
PonderAnswerMailReceiver.php
View Options
<?php
final
class
PonderAnswerMailReceiver
extends
PhabricatorObjectMailReceiver
{
public
function
isEnabled
()
{
$app_class
=
'PhabricatorPonderApplication'
;
return
PhabricatorApplication
::
isClassInstalled
(
$app_class
);
}
protected
function
getObjectPattern
()
{
return
'ANSR[1-9]
\d
*'
;
}
protected
function
loadObject
(
$pattern
,
PhabricatorUser
$viewer
)
{
$id
=
(
int
)
substr
(
$pattern
,
4
);
return
id
(
new
PonderAnswerQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
}
protected
function
getTransactionReplyHandler
()
{
return
new
PonderAnswerReplyHandler
();
}
}
Event Timeline
Log In to Comment