aboutsummaryrefslogtreecommitdiff
path: root/views/default/input
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-06-27 07:26:16 -0400
committerCash Costello <cash.costello@gmail.com>2011-06-27 07:26:16 -0400
commitd450c043eeabbe5d0d5466cba59045fd3a1888c9 (patch)
tree0702d87fb9d50193119cbd27422490bc6952401a /views/default/input
parente82534d0bceb80f7a9e7ba8f00748ee1eb32b214 (diff)
downloadelgg-d450c043eeabbe5d0d5466cba59045fd3a1888c9.tar.gz
elgg-d450c043eeabbe5d0d5466cba59045fd3a1888c9.tar.bz2
Refs #3407 using elgg-form and elgg-foot in core forms. Plugins next
Diffstat (limited to 'views/default/input')
-rw-r--r--views/default/input/form.php15
1 files changed, 12 insertions, 3 deletions
diff --git a/views/default/input/form.php b/views/default/input/form.php
index 6d5824cd8..df30133b3 100644
--- a/views/default/input/form.php
+++ b/views/default/input/form.php
@@ -1,14 +1,17 @@
<?php
/**
* Create a form for data submission.
- * Use this view for forms rather than creating a form tag in the wild as it provides
- * extra security which help prevent CSRF attacks.
+ * Use this view for forms as it provides protection against CSRF attacks.
*
* @package Elgg
* @subpackage Core
*
* @uses $vars['body'] The body of the form (made up of other input/xxx views and html
+ * @uses $vars['action'] The action URL of the form
+ * @uses $vars['method'] The submit method: post (default) or get
+ * @uses $vars['enctype'] Set to 'multipart/form-data' if uploading a file
* @uses $vars['disable_security'] turn off CSRF security by setting to true
+ * @uses $vars['class'] Additional class for the form
*/
$defaults = array(
@@ -18,6 +21,12 @@ $defaults = array(
$vars = array_merge($defaults, $vars);
+if (isset($vars['class'])) {
+ $vars['class'] = "elgg-form {$vars['class']}";
+} else {
+ $vars['class'] = 'elgg-form';
+}
+
$vars['action'] = elgg_normalize_url($vars['action']);
$vars['method'] = strtolower($vars['method']);
@@ -32,4 +41,4 @@ unset($vars['disable_security']);
$attributes = elgg_format_attributes($vars);
-echo "<form $attributes><fieldset>$body</fieldset></form>"; \ No newline at end of file
+echo "<form $attributes><fieldset>$body</fieldset></form>";