Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95943297
PhabricatorMetaMTAEmailOthersHeraldAction.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, Dec 20, 22:44
Size
814 B
Mime Type
text/x-php
Expires
Sun, Dec 22, 22:44 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
23084751
Attached To
rPH Phabricator
PhabricatorMetaMTAEmailOthersHeraldAction.php
View Options
<?php
final
class
PhabricatorMetaMTAEmailOthersHeraldAction
extends
PhabricatorMetaMTAEmailHeraldAction
{
const
ACTIONCONST
=
'email.other'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Send an email to'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
!=
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
public
function
applyEffect
(
$object
,
HeraldEffect
$effect
)
{
return
$this
->
applyEmail
(
$effect
->
getTarget
(),
$force
=
false
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
protected
function
getDatasource
()
{
return
new
PhabricatorMetaMTAMailableDatasource
();
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Send an email to: %s.'
,
$this
->
renderHandleList
(
$value
));
}
}
Event Timeline
Log In to Comment