function jquery_countdown_timer_block_info in jQuery Countdown Timer 7
Implements hook_block_info().
File
- ./
jquery_countdown_timer.module, line 23 - This module provides block with a simple jQuery coundown
Code
function jquery_countdown_timer_block_info() {
$blocks = array();
$blocks['jquery_countdown_timer'] = array(
'info' => t('jQuery Countdown Timer'),
'cache' => DRUPAL_CACHE_GLOBAL,
);
return $blocks;
}