You are here

function author_pane_block_view in Author Pane 7.2

Implements hook_block_view().

File

./author_pane.module, line 123
Gathers information from user related modules into one template.

Code

function author_pane_block_view($delta) {
  $block = array();
  $block['subject'] = t('Author Information');
  $block['content'] = author_pane_get_block();
  return $block;
}