Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91422183
DiffusionAuditorsAddAuditorsHeraldAction.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
Sun, Nov 10, 23:15
Size
826 B
Mime Type
text/x-php
Expires
Tue, Nov 12, 23:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22243307
Attached To
rPH Phabricator
DiffusionAuditorsAddAuditorsHeraldAction.php
View Options
<?php
final
class
DiffusionAuditorsAddAuditorsHeraldAction
extends
DiffusionAuditorsHeraldAction
{
const
ACTIONCONST
=
'diffusion.auditors.add'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Add auditors'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
!=
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
public
function
applyEffect
(
$object
,
HeraldEffect
$effect
)
{
$rule
=
$effect
->
getRule
();
return
$this
->
applyAuditors
(
$effect
->
getTarget
(),
$rule
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
protected
function
getDatasource
()
{
return
new
DiffusionAuditorDatasource
();
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Add auditors: %s.'
,
$this
->
renderHandleList
(
$value
));
}
}
Event Timeline
Log In to Comment