You are here

function openlayers_hook_info in Openlayers 7.3

Implements hook_hook_info().

File

./openlayers.module, line 350
Openlayers module.

Code

function openlayers_hook_info() {
  $hooks = array(
    'openlayers_object_preprocess_alter',
    'openlayers_object_postprocess_alter',
  );
  return array_fill_keys($hooks, array(
    'group' => 'openlayers',
  ));
}