コード例 #1
0
ファイル: Form.php プロジェクト: nhachey/LAMP-1---Project-1
 protected function defaultAttributes()
 {
     return parent::defaultAttributes() + array('action' => '', 'method' => 'POST', 'name' => '');
 }
コード例 #2
0
ファイル: Input.php プロジェクト: nhachey/LAMP-1---Project-1
 /**
  * @see Element::defaultAttribtues
  */
 protected function defaultAttributes()
 {
     return array_merge(parent::defaultAttributes(), array('type' => '', 'name' => '', 'value' => ''));
 }