private function setItemTitle(Tracker_Artifact $artifact)
 {
     $title = $artifact->getTitle();
     $xref = $artifact->getXRef();
     $class = $artifact->getTracker()->getColor();
     $this->item_title = $title;
     $this->item_class = $class;
     $this->item_xref = $xref;
 }
 /**
  * @param Tracker_Artifact        $artifact The child
  * @param Tracker_Artifact        $parent   The parent
  * @param Tracker_Semantic_Status $semantic The status semantic used by the corresponding tracker
  */
 public function __construct(Tracker_Artifact $artifact, Tracker_Artifact $parent, Tracker_Semantic_Status $semantic)
 {
     $base_url = get_server_url();
     $this->xref = $artifact->getXRef();
     $this->title = $artifact->getTitle();
     $this->id = $artifact->getId();
     $this->url = $base_url . $artifact->getUri();
     $this->status = $semantic->getStatus($artifact);
     $this->parent_id = $parent->getId();
     $this->has_children = $artifact->hasChildren();
 }
Пример #3
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());
 }
Пример #4
0
 /**
  * @see Tracker_CardPresenter
  */
 public function getXRef()
 {
     return $this->artifact->getXRef();
 }