function author_pane_block_info in Author Pane 7.2
Implements hook_block_info().
File
- ./
author_pane.module, line 43 - Gathers information from user related modules into one template.
Code
function author_pane_block_info() {
// TODO Rename block deltas (e.g., delta-0) to readable strings.
$blocks['delta-0']['info'] = t('Author Pane');
// We don't want the block to cache since what is displayed depends on
// both the user viewing and the user being viewed.
$blocks['delta-0']['cache'] = DRUPAL_NO_CACHE;
return $blocks;
}