You are here

function archive_block_info in Archive 7.2

Same name and namespace in other branches
  1. 7 archive.module \archive_block_info()

Implements hook_block().

File

./archive.module, line 181
Implements a block and page showing an archive of all site content.

Code

function archive_block_info() {
  $blocks = array();
  $blocks['month_archive']['info'] = t('Current calendar month with archive links');
  return $blocks;
}