Browse Source

add form::close.

Taylor Otwell 13 years ago
parent
commit
60ff3bf840
1 changed files with 10 additions and 0 deletions
  1. 10 0
      system/form.php

+ 10 - 0
system/form.php

@@ -57,6 +57,16 @@ class Form {
 		return static::open($action, $method, $attributes);
 	}
 
+	/**
+	 * Close a HTML form.
+	 *
+	 * @return string
+	 */
+	public static function close()
+	{
+		return '</form>';
+	}
+
 	/**
 	 * Generate a hidden field containing the current CSRF token.
 	 *