Respond to themes being enabled.
array $theme_list: Array containing the names of the themes being enabled.
theme_enable()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_themes_enabled($theme_list) { foreach ($theme_list as $theme) { block_theme_initialize($theme); } }