You are here

function footermap_block_info in footermap: a footer site map 7

File

./footermap.module, line 127

Code

function footermap_block_info() {
  $blocks = array();
  $blocks['footermap'] = array(
    'info' => t('Footermap block'),
    'weight' => 5,
    'status' => 1,
    'region' => 'footer',
    'cache' => DRUPAL_CACHE_CUSTOM,
  );
  return $blocks;
}