Exemple #1
0
 public function show()
 {
     $control = array("value" => null);
     if (isset($this->view->{$this->name})) {
         $this->view->{$this->name} = array_merge($control, $this->view->{$this->name});
     } else {
         $this->view->{$this->name} = $control;
     }
     return parent::show();
 }