function openlayers_boxes_plugins in Openlayers 7.2
Implements hook_boxes_plugins().
File
- ./
openlayers.module, line 1482 - Main OpenLayers API File
Code
function openlayers_boxes_plugins() {
return array(
'openlayers_simple' => array(
'title' => 'OpenLayers',
'handler' => array(
'parent' => 'boxes_box',
'class' => 'openlayers_simple',
'file' => 'openlayers_simple.inc',
'path' => drupal_get_path('module', 'openlayers') . '/plugins/boxes',
),
),
);
}