コード例 #1
0
ファイル: checkbox.php プロジェクト: staabm/redaxo
 public function __construct($tag = '', rex_form $table = null, array $attributes = [])
 {
     parent::__construct('', $table, $attributes);
     // Jede checkbox bekommt eingenes Label
     $this->setLabel('');
 }
コード例 #2
0
 function rex_form_radio_element($tag = '', &$table, $attributes = array())
 {
     parent::rex_form_options_element('', $table, $attributes);
     // Jedes radio bekommt eingenes Label
 }
コード例 #3
0
ファイル: radio.php プロジェクト: staabm/redaxo
 public function __construct($tag = '', rex_form $table = null, array $attributes = [])
 {
     parent::__construct('', $table, $attributes);
     // Jedes radio bekommt eingenes Label
 }