Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107043667
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
Thu, Apr 3, 22:26
Size
872 B
Mime Type
text/x-php
Expires
Sat, Apr 5, 22:26 (2 d)
Engine
blob
Format
Raw Data
Handle
25339737
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