function fasttoggle_block_info in Fasttoggle 7
Implements hook_block_info().
Register a block for displaying fasttoggle links.
File
- ./
fasttoggle.module, line 753 - Enables fast toggling of binary or not so binary settings.
Code
function fasttoggle_block_info() {
$blocks['block'] = array(
'info' => t('Fasttoggle Links'),
'weight' => -99,
'status' => 1,
'region' => 'content',
'cache' => DRUPAL_NO_CACHE,
);
return $blocks;
}