Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112225981
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, May 9, 02:18
Size
1 KB
Mime Type
text/x-php
Expires
Sun, May 11, 02:18 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
26018329
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
getActionGroupKey
()
{
return
HeraldSupportActionGroup
::
ACTIONGROUPKEY
;
}
public
function
supportsObject
(
$object
)
{
return
(
$object
instanceof
PhabricatorSubscribableInterface
);
}
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