Commit e87f7dc2 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #5 from mikelbring/develop

</form> in form class
parents af24e8db 1b620c59
...@@ -252,6 +252,16 @@ class Form { ...@@ -252,6 +252,16 @@ class Form {
return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL; return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
} }
/**
* Close a HTML form
*
* @return string
*/
public static function close()
{
return '</form>'.PHP_EOL;
}
/** /**
* Create a HTML input element. * Create a HTML input element.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment