function block_themes_enabled

7.x block.module block_themes_enabled($theme_list)

Initializes blocks for enabled themes.

Parameters

$theme_list: An array of theme names.

File

drupal-7.x/modules/block/block.module, line 621
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);
  }
}