function hook_themes_disabled

Respond to themes being disabled.

Parameters

array $theme_list: Array containing the names of the themes being disabled.

See also

theme_disable()

2 functions implement hook_themes_disabled()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

breakpoint_themes_disabled in drupal/core/modules/breakpoint/breakpoint.module
Implements hook_themes_disabled().
update_themes_disabled in drupal/core/modules/update/update.module
Implements hook_themes_disabled().
1 invocation of hook_themes_disabled()
theme_disable in drupal/core/includes/theme.inc
Disable a given list of themes.

File

drupal/core/modules/system/theme.api.php, line 235

Code

function hook_themes_disabled($theme_list) {

  // Clear all update module caches.
  _update_cache_clear();
}