You are here

function counter_block_info in Counter 7

Implements hook_block_info().

File

./counter.module, line 80

Code

function counter_block_info() {
  $blocks = array();
  $blocks['counter'] = array(
    'info' => t('Counter'),
  );
  return $blocks;
}