예제 #1
0
 public function build()
 {
     $field = new Tracker_FormElement_Field_Burndown($this->id, $this->tracker_id, $this->parent_id, $this->name, $this->label, $this->description, $this->use_it, $this->scope, $this->required, $this->notifications, $this->rank);
     if ($this->tracker) {
         $field->setTracker($this->tracker);
     }
     if ($this->hierarchy_factory) {
         $field->setHierarchyFactory($this->hierarchy_factory);
     }
     return $field;
 }
예제 #2
0
 /**
  * @see AgileDashboard_Pane::getIcon()
  */
 protected function getIcon()
 {
     return Tracker_FormElement_Field_Burndown::getFactoryIconUseIt();
 }
예제 #3
0
 private function getPaneContent()
 {
     return $this->field->fetchArtifactValue($this->artifact);
 }