Esempio n. 1
0
 public function copy($prefix = '')
 {
     $copy = parent::copy($prefix);
     $copy->setMultiLine($this->isMultiLine());
     return $copy;
 }
Esempio n. 2
0
 public function copy($prefix = '')
 {
     $copy = parent::copy($prefix);
     foreach ($this as $field) {
         $copy->push($field->copy($prefix));
     }
     return $copy;
 }
Esempio n. 3
0
 public function copy()
 {
     $copy = parent::copy();
     if ($this->columns) {
         $copy->setColumns($this->columns);
     }
     if ($this->grouper) {
         $copy->setGrouper($this->grouper);
     }
     $copy->setSrc($this->src, $this->manualExtractor);
     return $copy;
 }
Esempio n. 4
0
 public function copy($prefix = '')
 {
     $copy = parent::copy($prefix);
     if ($this->columns) {
         $copy->setColumns($this->columns);
     }
     $copy->setSrc($this->getSrc(), $this->manualExtractor);
     return $copy;
 }