コード例 #1
0
ファイル: Submit.php プロジェクト: oliverde8/oweb-framework
 public function init()
 {
     parent::init();
     $this->setType('submit');
     $this->addHtmlClass('OWebForm_input_button');
     $this->validate();
 }
コード例 #2
0
ファイル: FieldSet.php プロジェクト: oliverde8/oweb-framework
 public function init()
 {
     parent::init();
     $this->setType('');
 }
コード例 #3
0
ファイル: Select.php プロジェクト: oliverde8/oweb-framework
 public function init()
 {
     parent::init();
     $this->setType('');
     $this->validator = new \OWeb\utils\inputManagement\validators\ChosenValues();
 }