You are here

function countdown_block_info in Countdown 7

Implement hook_block_list().

File

./countdown.module, line 27
Count to, or from, a specified date and display the output in a block

Code

function countdown_block_info() {
  $blocks[0]['info'] = 'Countdown';
  return $blocks;
}