You are here

function fullcalendar_legend_block_info in FullCalendar 7.2

Implements hook_block_info().

File

fullcalendar_legend/fullcalendar_legend.module, line 24
Adds a legend of event types.

Code

function fullcalendar_legend_block_info() {
  $blocks = array();
  $blocks['fullcalendar_legend'] = array(
    'info' => t('FullCalendar Legend'),
  );
  return $blocks;
}