Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96554400
DiffusionAuditorsAddSelfHeraldAction.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
Sat, Dec 28, 01:07
Size
746 B
Mime Type
text/x-php
Expires
Mon, Dec 30, 01:07 (2 d)
Engine
blob
Format
Raw Data
Handle
23205201
Attached To
rPH Phabricator
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'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
==
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
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.'
);
}
}
Event Timeline
Log In to Comment