You are here

function print_block_info in Printer, email and PDF versions 7.2

Same name and namespace in other branches
  1. 7 print.module \print_block_info()

Implements hook_block_info().

File

./print.module, line 201
Displays Printer-friendly versions of Drupal pages.

Code

function print_block_info() {
  $block['print-top']['info'] = t('Most printed');
  $block['print-top']['cache'] = DRUPAL_CACHE_GLOBAL;
  return $block;
}