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 abstract class ManiphestTaskRelationship extends PhabricatorObjectRelationship { ..

Decoded Output download

<?php

abstract class ManiphestTaskRelationship
  extends PhabricatorObjectRelationship {

  public function isEnabledForObject($object) {
    $viewer = $this->getViewer();

    $has_app = PhabricatorApplication::isClassInstalledForViewer(
      'PhabricatorManiphestApplication',
      $viewer);
    if (!$has_app) {
      return false;
    }

    return ($object instanceof ManiphestTask);
  }

  protected function newMergeIntoTransactions(ManiphestTask $task) {
    return array(
      id(new ManiphestTransaction())
        ->setTransactionType(
          ManiphestTaskMergedIntoTransaction::TRANSACTIONTYPE)
        ->setNewValue($task->getPHID()),
    );
  }

  protected function newMergeFromTransactions(array $tasks) {
    $xactions = array();

    $subscriber_phids = $this->loadMergeSubscriberPHIDs($tasks);

    $xactions[] = id(new ManiphestTransaction())
      ->setTransactionType(ManiphestTaskMergedFromTransaction::TRANSACTIONTYPE)
      ->setNewValue(mpull($tasks, 'getPHID'));

    $xactions[] = id(new ManiphestTransaction())
      ->setTransactionType(PhabricatorTransactions::TYPE_SUBSCRIBERS)
      ->setNewValue(array('+' => $subscriber_phids));

    return $xactions;
  }

  private function loadMergeSubscriberPHIDs(array $tasks) {
    $phids = array();

    foreach ($tasks as $task) {
      $phids[] = $task->getAuthorPHID();
      $phids[] = $task->getOwnerPHID();
    }

    $subscribers = id(new PhabricatorSubscribersQuery())
      ->withObjectPHIDs(mpull($tasks, 'getPHID'))
      ->execute();

    foreach ($subscribers as $phid => $subscriber_list) {
      foreach ($subscriber_list as $subscriber) {
        $phids[] = $subscriber;
      }
    }

    $phids = array_unique($phids);
    $phids = array_filter($phids);

    return $phids;
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

abstract class ManiphestTaskRelationship
  extends PhabricatorObjectRelationship {

  public function isEnabledForObject($object) {
    $viewer = $this->getViewer();

    $has_app = PhabricatorApplication::isClassInstalledForViewer(
      'PhabricatorManiphestApplication',
      $viewer);
    if (!$has_app) {
      return false;
    }

    return ($object instanceof ManiphestTask);
  }

  protected function newMergeIntoTransactions(ManiphestTask $task) {
    return array(
      id(new ManiphestTransaction())
        ->setTransactionType(
          ManiphestTaskMergedIntoTransaction::TRANSACTIONTYPE)
        ->setNewValue($task->getPHID()),
    );
  }

  protected function newMergeFromTransactions(array $tasks) {
    $xactions = array();

    $subscriber_phids = $this->loadMergeSubscriberPHIDs($tasks);

    $xactions[] = id(new ManiphestTransaction())
      ->setTransactionType(ManiphestTaskMergedFromTransaction::TRANSACTIONTYPE)
      ->setNewValue(mpull($tasks, 'getPHID'));

    $xactions[] = id(new ManiphestTransaction())
      ->setTransactionType(PhabricatorTransactions::TYPE_SUBSCRIBERS)
      ->setNewValue(array('+' => $subscriber_phids));

    return $xactions;
  }

  private function loadMergeSubscriberPHIDs(array $tasks) {
    $phids = array();

    foreach ($tasks as $task) {
      $phids[] = $task->getAuthorPHID();
      $phids[] = $task->getOwnerPHID();
    }

    $subscribers = id(new PhabricatorSubscribersQuery())
      ->withObjectPHIDs(mpull($tasks, 'getPHID'))
      ->execute();

    foreach ($subscribers as $phid => $subscriber_list) {
      foreach ($subscriber_list as $subscriber) {
        $phids[] = $subscriber;
      }
    }

    $phids = array_unique($phids);
    $phids = array_filter($phids);

    return $phids;
  }

}

Function Calls

None

Variables

None

Stats

MD5 6e71a8b24e1209d083a6d73069006bfc
Eval Count 0
Decode Time 98 ms