mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-21 19:19:12 +01:00
30 lines
762 B
PHP
30 lines
762 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSubscriptionsRemoveSelfHeraldAction
|
||
|
extends PhabricatorSubscriptionsHeraldAction {
|
||
|
|
||
|
const ACTIONCONST = 'subscribers.self.remove';
|
||
|
|
||
|
public function getHeraldActionName() {
|
||
|
return pht('Remove me as a subscriber');
|
||
|
}
|
||
|
|
||
|
public function supportsRuleType($rule_type) {
|
||
|
return ($rule_type == HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
|
||
|
}
|
||
|
|
||
|
public function applyEffect($object, HeraldEffect $effect) {
|
||
|
$phid = $effect->getRule()->getAuthorPHID();
|
||
|
return $this->applySubscribe(array($phid), $is_add = false);
|
||
|
}
|
||
|
|
||
|
public function getHeraldActionStandardType() {
|
||
|
return self::STANDARD_NONE;
|
||
|
}
|
||
|
|
||
|
public function renderActionDescription($value) {
|
||
|
return pht('Remove rule author as subscriber.');
|
||
|
}
|
||
|
|
||
|
}
|