Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class PhabricatorMailOutboundRoutingSelfNotificationHeraldAction extends Ph..
Decoded Output download
<?php
final class PhabricatorMailOutboundRoutingSelfNotificationHeraldAction
extends PhabricatorMailOutboundRoutingHeraldAction {
const ACTIONCONST = 'routing.self.notification';
public function getHeraldActionName() {
return pht('Deliver as notification');
}
public function supportsRuleType($rule_type) {
return ($rule_type == HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
}
public function applyEffect($object, HeraldEffect $effect) {
$rule = $effect->getRule();
$author_phid = $rule->getAuthorPHID();
$this->applyRouting(
$rule,
PhabricatorMailRoutingRule::ROUTE_AS_NOTIFICATION,
array($author_phid));
}
public function getHeraldActionStandardType() {
return self::STANDARD_NONE;
}
public function renderActionDescription($value) {
return pht('Deliver as notification.');
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class PhabricatorMailOutboundRoutingSelfNotificationHeraldAction
extends PhabricatorMailOutboundRoutingHeraldAction {
const ACTIONCONST = 'routing.self.notification';
public function getHeraldActionName() {
return pht('Deliver as notification');
}
public function supportsRuleType($rule_type) {
return ($rule_type == HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
}
public function applyEffect($object, HeraldEffect $effect) {
$rule = $effect->getRule();
$author_phid = $rule->getAuthorPHID();
$this->applyRouting(
$rule,
PhabricatorMailRoutingRule::ROUTE_AS_NOTIFICATION,
array($author_phid));
}
public function getHeraldActionStandardType() {
return self::STANDARD_NONE;
}
public function renderActionDescription($value) {
return pht('Deliver as notification.');
}
}
Function Calls
None |
Stats
MD5 | 205d0f82e13e64324a23edeba0b74906 |
Eval Count | 0 |
Decode Time | 93 ms |