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 ManiphestTaskAssignSelfHeraldAction extends ManiphestTaskAssignHerald..

Decoded Output download

<?php

final class ManiphestTaskAssignSelfHeraldAction
  extends ManiphestTaskAssignHeraldAction {

  const ACTIONCONST = 'maniphest.assign.self';

  public function getHeraldActionName() {
    return pht('Assign task to me');
  }

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

  public function applyEffect($object, HeraldEffect $effect) {
    $phid = $effect->getRule()->getAuthorPHID();
    return $this->applyAssign(array($phid));
  }

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

  public function renderActionDescription($value) {
    return pht('Assign task to rule author.');
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class ManiphestTaskAssignSelfHeraldAction
  extends ManiphestTaskAssignHeraldAction {

  const ACTIONCONST = 'maniphest.assign.self';

  public function getHeraldActionName() {
    return pht('Assign task to me');
  }

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

  public function applyEffect($object, HeraldEffect $effect) {
    $phid = $effect->getRule()->getAuthorPHID();
    return $this->applyAssign(array($phid));
  }

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

  public function renderActionDescription($value) {
    return pht('Assign task to rule author.');
  }

}

Function Calls

None

Variables

None

Stats

MD5 20acd16708ecc9749aba666b0c14c118
Eval Count 0
Decode Time 133 ms