function theme_confirm_form

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

modules/system/system.module, line 3995
Configuration system that lets administrators modify the workings of the site.

Code

function theme_confirm_form($variables) {
  return drupal_render_children($variables['form']);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.module/function/theme_confirm_form/7.x