You are here

function shoutbox_block_info in Shoutbox 7.2

Same name and namespace in other branches
  1. 7 shoutbox.module \shoutbox_block_info()

Implements hook_block_info().

File

./shoutbox.module, line 130
Shoutbox module displays a block for users to create short messages for the whole site. Uses AHAH to update the database and display content.

Code

function shoutbox_block_info() {
  $blocks['shoutbox']['info'] = t('Shoutbox');
  return $blocks;
}