| 7 block.module | block_themes_enabled($theme_list) |
| 8 block.module | block_themes_enabled($theme_list) |
Initializes blocks for enabled themes.
Parameters
$theme_list: An array of theme names.
File
- modules/
block/ block.module, line 609 - 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);
}
}
Login or register to post comments