Full ELMS Learning Network documentation
function theme_system_modules_incompatible
×
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.admin.inc | theme_system_modules_incompatible($variables) |
cle7 system.admin.inc | theme_system_modules_incompatible($variables) |
elmsmedia7 system.admin.inc | theme_system_modules_incompatible($variables) |
icor7 system.admin.inc | theme_system_modules_incompatible($variables) |
meedjum_blog7 system.admin.inc | theme_system_modules_incompatible($variables) |
mooc7 system.admin.inc | theme_system_modules_incompatible($variables) |
Returns HTML for a message about incompatible modules.
Parameters
$variables: An associative array containing:
- message: The form array representing the currently disabled modules.
Related topics
1 theme call to theme_system_modules_incompatible()
- _system_modules_build_row in modules/
system/ system.admin.inc - Build a table row for the system modules page.
2 string references to the theme hook from theme_system_modules_incompatible()
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.
- system_theme in modules/
system/ system.module - Implements hook_theme().
- _system_modules_build_row in modules/
system/ system.admin.inc - Build a table row for the system modules page.
File
- modules/
system/ system.admin.inc, line 2653 - Admin page callbacks for the system module.
Code
function theme_system_modules_incompatible($variables) {
return '<div class="incompatible">' . $variables['message'] . '</div>';
}