Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548681
DiffusionAuditorsAddSelfHeraldAction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
921 B
Referenced Files
None
Subscribers
None
DiffusionAuditorsAddSelfHeraldAction.php
View Options
<?php
final
class
DiffusionAuditorsAddSelfHeraldAction
extends
DiffusionAuditorsHeraldAction
{
const
ACTIONCONST
=
'diffusion.auditors.self.add'
;
public
function
getHeraldActionName
()
{
return
pht
(
'Add me as an auditor'
);
}
// hide "Add me as an auditor" 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
();
$phid
=
$rule
->
getAuthorPHID
();
return
$this
->
applyAuditors
(
array
(
$phid
),
$rule
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_NONE
;
}
public
function
renderActionDescription
(
$value
)
{
return
pht
(
'Add rule author as auditor.'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:53 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
121946
Default Alt Text
DiffusionAuditorsAddSelfHeraldAction.php (921 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment