theme_confirm_form
- Versions
- 7
theme_confirm_form($variables)
Theme confirmation forms.
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: An associative array containing the structure of the form.
Related topics
Code
modules/system/system.module, line 3553
<?php
function theme_confirm_form($variables) {
return drupal_render_children($variables['form']);
}
?>Login or register to post comments 