You are here

function openlayers_plus_block_info in OpenLayers Plus 7.3

Same name and namespace in other branches
  1. 7 openlayers_plus.module \openlayers_plus_block_info()
  2. 7.2 openlayers_plus.module \openlayers_plus_block_info()

Implements hook_block_info().

File

./openlayers_plus.module, line 11
Openlayers_plus module file.

Code

function openlayers_plus_block_info() {
  $blocks = array(
    'blockswitcher' => array(
      'info' => t('OL+ Blockswitcher'),
    ),
    'blocktoggle' => array(
      'info' => t('OL+ BlockToggle'),
    ),
  );
  return $blocks;
}