Пример #1
0
 /**
  * Apply $rule that was triggered by a change on $artifact
  *
  * @param Tracker_Artifact $artifact
  * @param Tracker_Workflow_Trigger_TriggerRule $rule
  */
 public function process(Tracker_Artifact $artifact, Tracker_Workflow_Trigger_TriggerRule $rule)
 {
     $this->logger->start(__METHOD__, $artifact->getXRef(), $rule->getId());
     $parent = $artifact->getParentWithoutPermissionChecking();
     if ($parent && !$this->parentAlreadyHasTargetValue($parent, $rule)) {
         $this->logger->debug('Parent ' . $parent->getXRef() . ' does not have target value…');
         $processor_strategy = $this->getRuleStrategy($artifact, $rule);
         if ($processor_strategy->allPrecondtionsAreMet()) {
             $this->logger->debug('All preconditions are met…');
             $this->updateParent($parent, $artifact, $rule);
         }
     }
     $this->logger->end(__METHOD__, $artifact->getId(), $rule->getId());
 }