Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112007152
DifferentialReviewersAddBlockingReviewersHeraldAction.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 6, 17:42
Size
865 B
Mime Type
text/x-php
Expires
Thu, May 8, 17:42 (2 d)
Engine
blob
Format
Raw Data
Handle
25948759
Attached To
rPH Phabricator
DifferentialReviewersAddBlockingReviewersHeraldAction.php
View Options
<?php
final
class
DifferentialReviewersAddBlockingReviewersHeraldAction
extends
DifferentialReviewersHeraldAction
{
const
ACTIONCONST
=
'differential.reviewers.blocking'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Add blocking reviewers'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
!=
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
public
function
applyEffect
(
$object
,
HeraldEffect
$effect
)
{
return
$this
->
applyReviewers
(
$effect
->
getTarget
(),
$is_blocking
=
true
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
protected
function
getDatasource
()
{
return
new
PhabricatorMetaMTAMailableDatasource
();
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Add blocking reviewers: %s.'
,
$this
->
renderHandleList
(
$value
));
}
}
Event Timeline
Log In to Comment