Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102515022
PhabricatorSubscriptionsAddSubscribersHeraldAction.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, Feb 21, 13:03
Size
830 B
Mime Type
text/x-php
Expires
Sun, Feb 23, 13:03 (2 d)
Engine
blob
Format
Raw Data
Handle
24340704
Attached To
rPH Phabricator
PhabricatorSubscriptionsAddSubscribersHeraldAction.php
View Options
<?php
final
class
PhabricatorSubscriptionsAddSubscribersHeraldAction
extends
PhabricatorSubscriptionsHeraldAction
{
const
ACTIONCONST
=
'subscribers.add'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Add subscribers'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
!=
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
public
function
applyEffect
(
$object
,
HeraldEffect
$effect
)
{
return
$this
->
applySubscribe
(
$effect
->
getTarget
(),
$is_add
=
true
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
protected
function
getDatasource
()
{
return
new
PhabricatorMetaMTAMailableDatasource
();
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Add subscribers: %s.'
,
$this
->
renderHandleList
(
$value
));
}
}
Event Timeline
Log In to Comment