Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548936
DiffusionAuditorsAddAuditorsHeraldAction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionAuditorsAddAuditorsHeraldAction.php
View Options
<?php
final
class
DiffusionAuditorsAddAuditorsHeraldAction
extends
DiffusionAuditorsHeraldAction
{
const
ACTIONCONST
=
'diffusion.auditors.add'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Add auditors'
);
}
// hide "Add auditors" Herald action if Audit not installed
public
function
supportsRuleType
(
$rule_type
)
{
if
(
id
(
new
PhabricatorAuditApplication
())->
isInstalled
())
{
return
(
$rule_type
!=
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
else
{
return
false
;
}
}
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
));
}
public
function
getPHIDsAffectedByAction
(
HeraldActionRecord
$record
)
{
return
$record
->
getTarget
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:57 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
121983
Default Alt Text
DiffusionAuditorsAddAuditorsHeraldAction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment