You are here

function gmap_location_block_info in GMap Module 7.2

Same name and namespace in other branches
  1. 7 gmap_location.module \gmap_location_block_info()

Implements hook_block_info().

File

./gmap_location.module, line 619
GMap Location module is a module to add some gmap funcationality based on location.modules information.

Code

function gmap_location_block_info() {
  return array(
    0 => array(
      'info' => t('Location map'),
      // @@@ Check whether we can fix this by telling drupal what js to use.
      'cache' => DRUPAL_NO_CACHE,
    ),
    1 => array(
      'info' => t('Author map'),
      // @@@
      'cache' => DRUPAL_NO_CACHE,
    ),
  );
}