Merge pull request #5 from mikelbring/develop

</form> in form class
This commit is contained in:
Taylor Otwell 2011-06-14 10:59:15 -07:00
commit e87f7dc2f5

View File

@ -252,6 +252,16 @@ class Form {
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.
*