You are here

function casetracker_block_info in Case Tracker 7

Implements hook_block_info().

File

./casetracker.module, line 691
Enables the handling of projects and their cases.

Code

function casetracker_block_info() {
  $blocks['case'] = array(
    'info' => t('Jump to case'),
  );
  return $blocks;
}