function workbench_block_info in Workbench 7
Implements hook_block_info().
Register a block that other modules may hook into.
File
- ./
workbench.module, line 93 - Workbench module file for editorial workspaces.
Code
function workbench_block_info() {
$blocks['block'] = array(
'info' => t('Workbench information'),
'weight' => -99,
'status' => 1,
'region' => 'content',
'cache' => DRUPAL_NO_CACHE,
);
return $blocks;
}