Exemple #1
0
 /**
  * @see Tracker_Artifact::getAllowedChildrenTypes()
  */
 public function getAllowedChildrenTypes()
 {
     $trackers = $this->artifact->getAllowedChildrenTypes();
     if ($this->getTracker() == $this->planning->getPlanningTracker()) {
         $trackers[] = $this->planning->getBacklogTracker();
     }
     return $trackers;
 }
Exemple #2
0
 /**
  * @see Tracker_CardPresenter
  */
 public function allowedChildrenTypes()
 {
     return $this->artifact->getAllowedChildrenTypes();
 }
Exemple #3
0
 /**
  * @see Tracker_Artifact::getAllowedChildrenTypes()
  */
 public function getAllowedChildrenTypes()
 {
     return $this->appendBacklogTrackerIfRoot($this->artifact->getAllowedChildrenTypes());
 }