mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-24 13:38:19 +01:00
34 lines
826 B
PHP
34 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));
|
||
|
}
|
||
|
|
||
|
}
|