mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-11 06:18:33 +01:00
Summary: Ref T8726. No surprises. Test Plan: Created rules using both action variants, applied upgrade, saw rules still work correctly. {F658842} Reviewers: btrahan Reviewed By: btrahan Subscribers: joshuaspence, epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13701
32 lines
814 B
PHP
32 lines
814 B
PHP
<?php
|
|
|
|
final class PhabricatorMetaMTAEmailOthersHeraldAction
|
|
extends PhabricatorMetaMTAEmailHeraldAction {
|
|
|
|
const ACTIONCONST = 'email.other';
|
|
|
|
public function getHeraldActionName() {
|
|
return pht('Send an email to');
|
|
}
|
|
|
|
public function supportsRuleType($rule_type) {
|
|
return ($rule_type != HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
|
|
}
|
|
|
|
public function applyEffect($object, HeraldEffect $effect) {
|
|
return $this->applyEmail($effect->getTarget(), $force = false);
|
|
}
|
|
|
|
public function getHeraldActionStandardType() {
|
|
return self::STANDARD_PHID_LIST;
|
|
}
|
|
|
|
protected function getDatasource() {
|
|
return new PhabricatorMetaMTAMailableDatasource();
|
|
}
|
|
|
|
public function renderActionDescription($value) {
|
|
return pht('Send an email to: %s.', $this->renderHandleList($value));
|
|
}
|
|
|
|
}
|