You are here

function commons_events_block_info in Drupal Commons 7.3

Implements hook_block_info().

File

modules/commons/commons_events/commons_events.module, line 479

Code

function commons_events_block_info() {
  $blocks['commons_events_create_event_link'] = array(
    'info' => t('"Create an event" call to action'),
    'cache' => DRUPAL_CACHE_GLOBAL,
  );
  $blocks['commons_events_anonymous_login'] = array(
    'info' => t('"Login to create an event" call to action'),
    'cache' => DRUPAL_CACHE_GLOBAL,
  );
  return $blocks;
}