You are here

function openlayers_boxes_boxes_plugins in Openlayers 7.3

Implements hook_boxes_plugins().

File

modules/openlayers_boxes/openlayers_boxes.module, line 19
Openlayers Boxes Integration module.

Code

function openlayers_boxes_boxes_plugins() {
  return array(
    'openlayers' => array(
      'title' => 'Openlayers map',
      'handler' => array(
        'parent' => 'boxes_box',
        'class' => 'openlayers',
        'file' => 'openlayers.php',
        'path' => drupal_get_path('module', 'openlayers_boxes') . '/plugins/boxes',
      ),
    ),
  );
}