| Versions | |
|---|---|
| 7 | 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.
$variables An associative array containing:
drupal/
<?php
function theme_system_settings_form($variables) {
return drupal_render_children($variables['form']);
}
?>