Browse Source

Merge pull request #5 from mikelbring/develop

</form> in form class
Taylor Otwell 14 years ago
parent
commit
e87f7dc2f5
1 changed files with 10 additions and 0 deletions
  1. 10 0
      system/form.php

+ 10 - 0
system/form.php

@@ -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.
 	 *