Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112805966
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
Tue, May 13, 02:20
Size
1 KB
Mime Type
text/x-php
Expires
Thu, May 15, 02:20 (1 d, 8 h)
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