Exemple #1
0
 /**
  * Generates an opening HTML form tag.
  *
  * @param   string  form action
  * @param   array   html attributes
  * @return  string
  */
 public function open($action = NULL, array $attributes = NULL)
 {
     return Kohana_Form::open($action, $attributes);
 }
Exemple #2
0
 public static function open($action = NULL, array $attributes = NULL)
 {
     return parent::open($action, $attributes) . PHP_EOL;
 }