Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107553678
FundInitiativeReplyHandler.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, Apr 9, 00:23
Size
872 B
Mime Type
text/x-php
Expires
Fri, Apr 11, 00:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25438154
Attached To
rPH Phabricator
FundInitiativeReplyHandler.php
View Options
<?php
final
class
FundInitiativeReplyHandler
extends
PhabricatorMailReplyHandler
{
public
function
validateMailReceiver
(
$mail_receiver
)
{
if
(!(
$mail_receiver
instanceof
FundInitiative
))
{
throw
new
Exception
(
'Mail receiver is not a FundInitiative!'
);
}
}
public
function
getPrivateReplyHandlerEmailAddress
(
PhabricatorObjectHandle
$handle
)
{
return
$this
->
getDefaultPrivateReplyHandlerEmailAddress
(
$handle
,
'I'
);
}
public
function
getPublicReplyHandlerEmailAddress
()
{
return
$this
->
getDefaultPublicReplyHandlerEmailAddress
(
'I'
);
}
public
function
getReplyHandlerInstructions
()
{
if
(
$this
->
supportsReplies
())
{
// TODO: Implement.
return
null
;
}
else
{
return
null
;
}
}
protected
function
receiveEmail
(
PhabricatorMetaMTAReceivedMail
$mail
)
{
// TODO: Implement.
return
null
;
}
}
Event Timeline
Log In to Comment