Exemple #1
0
 public function __construct(rex_form $table, rex_form_element $saveElement = null, rex_form_element $applyElement = null, rex_form_element $deleteElement = null, rex_form_element $resetElement = null, rex_form_element $abortElement = null)
 {
     parent::__construct('', $table);
     $this->saveElement = $saveElement;
     $this->applyElement = $applyElement;
     $this->deleteElement = $deleteElement;
     $this->resetElement = $resetElement;
     $this->abortElement = $abortElement;
 }
Exemple #2
0
 public function __construct($tag = '', rex_form $table = null, array $attributes = [])
 {
     parent::__construct('', $table, $attributes);
 }
Exemple #3
0
 public function __construct($tag = '', rex_form $table = null, array $attributes = [])
 {
     parent::__construct('', $table, $attributes);
     $this->fields = [];
     $this->multiple = true;
 }
Exemple #4
0
 public function __construct($tag = '', rex_form $table = null, array $attributes = [])
 {
     parent::__construct('', $table, $attributes);
     $this->select = new rex_select();
     $this->separator = '|';
 }