コード例 #1
0
ファイル: radiobutton.php プロジェクト: Jille/dingesform
 function fillAttributes()
 {
     parent::fillAttributes();
     $this->setAttribute('type', 'radio');
 }
コード例 #2
0
ファイル: checklist.php プロジェクト: Jille/dingesform
 function fillAttributes()
 {
     parent::fillAttributes();
     $this->setAttribute('name', $this->name . '[]');
     $this->setAttribute('type', 'checkbox');
 }