Go to the source code of this file.
Initial value:
Create a form for data submission.
Use this view for forms as it provides protection against CSRF attacks.
$vars['body'] The body of the form (made up of other input/xxx views and html $vars['action'] The action URL of the form $vars['action_name'] The name of the action (for targeting particular forms while extending) $vars['method'] The submit method: post (default) or get $vars['enctype'] Set to 'multipart/form-data' if uploading a file $vars['disable_security'] Turn off CSRF security by setting to true $vars['class'] Additional class for the form $vars['ignore_empty_body'] Boolean (default: true) to determine if an empty body should still draw the form $vars['prevent_double_submit'] Boolean (default: true) disables submit button when form is submitted
Definition at line 17 of file form.php.
$ignore_empty_body = (bool) elgg_extract('ignore_empty_body', $vars, true) |
$vars = array_merge($defaults, $vars) |
$vars['method'] = strtolower((string) $vars['method']) |