function block_rebuild

Implements hook_rebuild().

File

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

Code

function block_rebuild() {
  foreach (list_themes() as $name => $data) {
    if ($data->status) {
      _block_rehash($name);
    }
  }
}