function openlayers_quicktabs_quicktabs_contents in Openlayers 7.3
Implements hook_quicktabs_contents().
File
- modules/
openlayers_quicktabs/ openlayers_quicktabs.module, line 10 - Openlayers Quicktabs Integration module.
Code
function openlayers_quicktabs_quicktabs_contents() {
$info = array();
$info['Openlayers-map'] = array(
'path' => drupal_get_path('module', 'openlayers_quicktabs') . '/plugins/quicktabs',
'handler' => array(
'file' => 'OpenlayersMap.php',
'class' => 'OpenlayersMap',
),
);
return $info;
}