| 6 block.module | block_flush_caches() |
| 7 block.module | block_flush_caches() |
Implements hook_flush_caches().
1 call to block_flush_caches()
File
- modules/
block/ block.module, line 926 - Controls the visual building blocks a page is constructed with.
Code
function block_flush_caches() {
// Rehash blocks for active themes. We don't use list_themes() here,
// because if MAINTENANCE_MODE is defined it skips reading the database,
// and we can't tell which themes are active.
$themes = db_query("SELECT name FROM {system} WHERE type = 'theme' AND status = 1");
foreach ($themes as $theme) {
_block_rehash($theme->name);
}
return array('cache_block');
}
Login or register to post comments