function theme_system_settings_form
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
Archivo
- drupal-7.x/
modules/ system/ system.module, line 3975 - Configuration system that lets administrators modify the workings of the site.
Código
function theme_system_settings_form($variables) {
return drupal_render_children($variables['form']);
}