You are here

function pretty_calendar_block_info in Pretty Calendar 7

Implements hook_block_info().

File

./pretty_calendar.module, line 85
Simple nice calendar module that displays the materials by date.

Code

function pretty_calendar_block_info() {
  $blocks['calendar']['info'] = t('Calendar');
  $blocks['calendar']['properties']['administrative'] = TRUE;
  return $blocks;
}