Full ELMS Learning Network documentation
function theme_system_settings_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_system_settings_form($variables) |
cle7 system.module | theme_system_settings_form($variables) |
elmsmedia7 system.module | theme_system_settings_form($variables) |
icor7 system.module | theme_system_settings_form($variables) |
meedjum_blog7 system.module | theme_system_settings_form($variables) |
mooc7 system.module | 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
4 string references to the theme hook from theme_system_settings_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.
- imageinfo_cache_admin_settings_form in sites/
all/ modules/ ulmus/ imageinfo_cache/ imageinfo_cache.admin.inc - Form builder; Configure advagg settings.
- rubik_theme in sites/
all/ themes/ ulmus/ rubik/ template.php - Implementation of hook_theme().
- system_theme in modules/
system/ system.module - Implements hook_theme().
- tipsy_admin in sites/
all/ modules/ ulmus/ tipsy/ tipsy.admin.inc - Implementation of tipsy admin form
File
- modules/
system/ system.module, line 3975 - Configuration system that lets administrators modify the workings of the site.
Code
function theme_system_settings_form($variables) {
return drupal_render_children($variables['form']);
}