function hook_block_info_alter

Change block definition before saving to the database.

Parameters

$blocks: A multidimensional array of blocks keyed by the defining module and delta; the values are blocks returned by hook_block_info(). This hook is fired after the blocks are collected from hook_block_info() and the database, right before saving back to the database.

$theme: The theme these blocks belong to.

$code_blocks: The blocks as defined in hook_block_info() before being overwritten by the database data.

See also

hook_block_info()

Related topics

1 invocation of hook_block_info_alter()
_block_rehash in drupal/core/modules/block/block.module
Updates the 'block' DB table with the blocks currently exported by modules.

File

drupal/core/modules/block/block.api.php, line 138
Hooks provided by the Block module.

Code

function hook_block_info_alter(&$blocks, $theme, $code_blocks) {

  // Disable the login block.
  $blocks['user']['login']['status'] = 0;
}