You are here

function leaflet_demo_block_info in Leaflet More Maps 7

Implements hook_block_info().

File

leaflet_demo/leaflet_demo.module, line 19
"Leaflet Demo" showcases in a block all Leaflet-powered maps enabled on your Drupal site.

Code

function leaflet_demo_block_info() {
  $blocks['leaflet_maps'] = array(
    'info' => t('Leaflet-powered maps showcase'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}