function block_themes_enabled

Initializes blocks for enabled themes.

Parameters

$theme_list: An array of theme names.

File

drupal/core/modules/block/block.module, line 657
Controls the visual building blocks a page is constructed with.

Code

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