You are here

function footer_message_block_info in Footer Message 7

Implements hook_block_info().

File

./footer_message.module, line 33
This module provides a configurable footer message as a block.

Code

function footer_message_block_info() {

  // Add a block containing the site footer message.
  $blocks['footer_message'] = array(
    'info' => t('Footer Message'),
    'cache' => DRUPAL_CACHE_GLOBAL,
  );
  return $blocks;
}