Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112683984
PhabricatorSubscriptionsRemoveSubscribersHeraldAction.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
Mon, May 12, 06:48
Size
1 KB
Mime Type
text/x-php
Expires
Wed, May 14, 06:48 (2 d)
Engine
blob
Format
Raw Data
Handle
26102309
Attached To
rPH Phabricator
PhabricatorSubscriptionsRemoveSubscribersHeraldAction.php
View Options
<?php
final
class
PhabricatorSubscriptionsRemoveSubscribersHeraldAction
extends
PhabricatorSubscriptionsHeraldAction
{
const
ACTIONCONST
=
'subscribers.remove'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Remove 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
=
false
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
protected
function
getDatasource
()
{
return
new
PhabricatorMetaMTAMailableDatasource
();
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Remove subscribers: %s.'
,
$this
->
renderHandleList
(
$value
));
}
}
Event Timeline
Log In to Comment