1 system.theme.inc | theme_confirm_form($variables) |
Returns HTML for a confirmation form.
By default this does not alter the appearance of a form at all, but is provided as a convenience for themers.
Parameters
$variables: An associative array containing:
- form: A render element representing the form.
Related topics
File
- core/
modules/ system/ system.theme.inc, line 28 - Theme functions for the System module.
Code
function theme_confirm_form($variables) {
return backdrop_render_children($variables['form']);
}