openlayers_quicktabs.module in Openlayers 7.3
Openlayers Quicktabs Integration module.
File
modules/openlayers_quicktabs/openlayers_quicktabs.moduleView source
<?php
/**
* @file
* Openlayers Quicktabs Integration module.
*/
/**
* Implements hook_quicktabs_contents().
*/
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;
}
Functions
Name | Description |
---|---|
openlayers_quicktabs_quicktabs_contents | Implements hook_quicktabs_contents(). |