function hook_themes_enabled

Respond to themes being enabled.

Parameters

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

See also

theme_enable()

4 functions implement hook_themes_enabled()
1 invocation of hook_themes_enabled()

File

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

Code

function hook_themes_enabled($theme_list) {
  foreach ($theme_list as $theme) {
    block_theme_initialize($theme);
  }
}