Full ELMS Learning Network documentation
function theme_confirm_form
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 system.module | theme_confirm_form($variables) |
cle7 system.module | theme_confirm_form($variables) |
elmsmedia7 system.module | theme_confirm_form($variables) |
icor7 system.module | theme_confirm_form($variables) |
meedjum_blog7 system.module | theme_confirm_form($variables) |
mooc7 system.module | 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
2 string references to the theme hook from theme_confirm_form()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- rubik_theme in sites/
all/ themes/ ulmus/ rubik/ template.php - Implementation of hook_theme().
- system_theme in modules/
system/ system.module - Implements hook_theme().
File
- modules/
system/ system.module, line 3959 - Configuration system that lets administrators modify the workings of the site.
Code
function theme_confirm_form($variables) {
return drupal_render_children($variables['form']);
}