mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
6f6d88794b
Ref T8726.
30 lines
746 B
PHP
30 lines
746 B
PHP
<?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.');
|
|
}
|
|
|
|
}
|