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 HeraldCommentContentField extends HeraldField { const FIELDCONST = '..

Decoded Output download

<?php

final class HeraldCommentContentField extends HeraldField {

  const FIELDCONST = 'comment.content';

  public function getHeraldFieldName() {
    return pht('Comment content');
  }

  public function getFieldGroupKey() {
    return HeraldTransactionsFieldGroup::FIELDGROUPKEY;
  }

  public function getHeraldFieldValue($object) {
    $adapter = $this->getAdapter();

    $xactions = $adapter->getAppliedTransactions();

    $result = array();
    foreach ($xactions as $xaction) {
      if (!$xaction->hasComment()) {
        continue;
      }

      $comment = $xaction->getComment();
      $content = $comment->getContent();

      $result[] = $content;
    }

    return $result;
  }

  public function supportsObject($object) {
    return true;
  }

  protected function getHeraldFieldStandardType() {
    return self::STANDARD_TEXT_LIST;
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class HeraldCommentContentField extends HeraldField {

  const FIELDCONST = 'comment.content';

  public function getHeraldFieldName() {
    return pht('Comment content');
  }

  public function getFieldGroupKey() {
    return HeraldTransactionsFieldGroup::FIELDGROUPKEY;
  }

  public function getHeraldFieldValue($object) {
    $adapter = $this->getAdapter();

    $xactions = $adapter->getAppliedTransactions();

    $result = array();
    foreach ($xactions as $xaction) {
      if (!$xaction->hasComment()) {
        continue;
      }

      $comment = $xaction->getComment();
      $content = $comment->getContent();

      $result[] = $content;
    }

    return $result;
  }

  public function supportsObject($object) {
    return true;
  }

  protected function getHeraldFieldStandardType() {
    return self::STANDARD_TEXT_LIST;
  }

}

Function Calls

None

Variables

None

Stats

MD5 5d48c73386b9ea58b90524be35206f84
Eval Count 0
Decode Time 86 ms