archive_block
Definition
archive_block($op = 'list', $delta = 0)
modules/archive.module, line 51
Description
Implementation of hook_block().
Generates a calendar for the current month, with links to the archives for each day.
Code
<?php
function archive_block($op = 'list', $delta = 0) {
if ($op == 'list') {
$blocks[0]['info'] = t('Calendar to browse archives');
return $blocks;
}
else if ($op == 'view' && user_access('access content')) {
$block['subject'] = t('Browse archives');
$block['content'] = archive_calendar();
return $block;
}
}
?> 