function hook_themes_disabled

7.x theme.api.php hook_themes_disabled($theme_list)

Respond to themes being disabled.

Parameters

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

See also

theme_disable()

1 function implements 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.

update_themes_disabled in drupal-7.x/modules/update/update.module
Implements hook_themes_disabled().
1 invocation of hook_themes_disabled()
theme_disable in drupal-7.x/includes/theme.inc
Disables a given list of themes.

File

drupal-7.x/modules/system/theme.api.php, line 237

Code

function hook_themes_disabled($theme_list) {
  // Clear all update module caches.
  _update_cache_clear();
}