mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-08 22:01:03 +01:00
6f6d88794b
Ref T8726.
33 lines
826 B
PHP
33 lines
826 B
PHP
<?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));
|
|
}
|
|
|
|
}
|