You are here

function biblio_block_info in Bibliography Module 7

Same name and namespace in other branches
  1. 7.2 biblio.module \biblio_block_info()

Implements hook_block().

Generates a block containing the latest poll.

File

./biblio.module, line 1952
Bibliography Module for Drupal.

Code

function biblio_block_info() {
  $blocks['recent'] = array(
    'info' => t('Recent publications'),
  );
  return $blocks;
}