You are here

function addressfield_staticmap_block_info in Address Field Static Map 7

Implements hook_block_info().

File

./addressfield_staticmap.module, line 41
Main file for the addressfield static map module.

Code

function addressfield_staticmap_block_info() {
  $blocks['addressfield_staticmap'] = array(
    'info' => t('Address Field Static Map'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  $blocks['addressfield_staticmap_alt'] = array(
    'info' => t('Address Field Static Map (alternate)'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  return $blocks;
}