You are here

function jquery_countdown_block_info in jQuery Countdown 7.2

Same name and namespace in other branches
  1. 7 jquery_countdown.module \jquery_countdown_block_info()

Implementation of hook_block_info().

File

./jquery_countdown.module, line 37

Code

function jquery_countdown_block_info() {
  $blocks = array();
  $blocks['jquery_countdown']['info'] = t('jQuery Countdown Block');
  $blocks['jquery_countdown']['cache'] = DRUPAL_NO_CACHE;
  return $blocks;
}