function leaflet_demo_block_configure in Leaflet More Maps 7
Implements hook_block_configure().
File
- leaflet_demo/
leaflet_demo.module, line 30 - "Leaflet Demo" showcases in a block all Leaflet-powered maps enabled on your Drupal site.
Code
function leaflet_demo_block_configure($delta = '') {
$form = array();
if ($delta == 'leaflet_maps') {
// Do nothing.
}
return $form;
}