You are here

function jquery_countdown_block_view in jQuery Countdown 7

Same name and namespace in other branches
  1. 7.2 jquery_countdown.module \jquery_countdown_block_view()

Implementation of hook_block_view().

File

./jquery_countdown.module, line 51

Code

function jquery_countdown_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'jquery_countdown':
      $block['subject'] = check_plain(variable_get('jquery_countdown_event_name', t('jQuery Countdown')));
      $block['content'] = _jquery_countdown_block_content($delta);
      break;
  }
  return $block;
}