You are here

function opening_hours_block_info in Opening hours 7

Implements hook_block_info().

File

./opening_hours.module, line 77
Opening hours module.

Code

function opening_hours_block_info() {
  return array(
    'week' => array(
      'info' => t('Opening hours for node by week'),
      'cache' => DRUPAL_NO_CACHE,
    ),
  );
}