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 PhabricatorMetaMTAEmailSelfHeraldAction extends PhabricatorMetaMTAEma..

Decoded Output download

<?php

final class PhabricatorMetaMTAEmailSelfHeraldAction
  extends PhabricatorMetaMTAEmailHeraldAction {

  const ACTIONCONST = 'email.self';

  public function getHeraldActionName() {
    return pht('Send me an email');
  }

  public function supportsRuleType($rule_type) {
    return ($rule_type == HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
  }

  public function applyEffect($object, HeraldEffect $effect) {
    $phid = $effect->getRule()->getAuthorPHID();

    // For personal rules, we'll force delivery of a real email. This effect
    // is stronger than notification preferences, so you get an actual email
    // even if your preferences are set to "Notify" or "Ignore".

    return $this->applyEmail(array($phid), $force = true);
  }

  public function getHeraldActionStandardType() {
    return self::STANDARD_NONE;
  }

  public function renderActionDescription($value) {
    return pht('Send an email to rule author.');
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class PhabricatorMetaMTAEmailSelfHeraldAction
  extends PhabricatorMetaMTAEmailHeraldAction {

  const ACTIONCONST = 'email.self';

  public function getHeraldActionName() {
    return pht('Send me an email');
  }

  public function supportsRuleType($rule_type) {
    return ($rule_type == HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
  }

  public function applyEffect($object, HeraldEffect $effect) {
    $phid = $effect->getRule()->getAuthorPHID();

    // For personal rules, we'll force delivery of a real email. This effect
    // is stronger than notification preferences, so you get an actual email
    // even if your preferences are set to "Notify" or "Ignore".

    return $this->applyEmail(array($phid), $force = true);
  }

  public function getHeraldActionStandardType() {
    return self::STANDARD_NONE;
  }

  public function renderActionDescription($value) {
    return pht('Send an email to rule author.');
  }

}

Function Calls

None

Variables

None

Stats

MD5 80869fc4dca958237312e6bea722bc59
Eval Count 0
Decode Time 99 ms