Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100479882
PhabricatorMetaMTAEmailSelfHeraldAction.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, Jan 31, 03:18
Size
943 B
Mime Type
text/x-php
Expires
Sun, Feb 2, 03:18 (2 d)
Engine
blob
Format
Raw Data
Handle
23971639
Attached To
rPH Phabricator
PhabricatorMetaMTAEmailSelfHeraldAction.php
View Options
<?php
final
class
PhabricatorMetaMTAEmailSelfHeraldAction
extends
PhabricatorMetaMTAEmailHeraldAction
{
const
ACTIONCONST
=
'email.self'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Send me an email'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
==
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
public
function
applyEffect
(
$object
,
HeraldEffect
$effect
)
{
$phid
=
$effect
->
getRule
()->
getAuthorPHID
();
// For personal rules, we'll force delivery of a real email. This effect
// is stronger than notification preferences, so you get an actual email
// even if your preferences are set to "Notify" or "Ignore".
return
$this
->
applyEmail
(
array
(
$phid
),
$force
=
true
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_NONE
;
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Send an email to rule author.'
);
}
}
Event Timeline
Log In to Comment