1 system.theme.inc | theme_system_settings_form($variables) |
Returns HTML for a system settings 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 44 - Theme functions for the System module.
Code
function theme_system_settings_form($variables) {
return backdrop_render_children($variables['form']);
}