You are here

function openlayers_quicktabs_contents in Openlayers 7.2

Implements hook_quicktabs_contents().

File

./openlayers.module, line 1499
Main OpenLayers API File

Code

function openlayers_quicktabs_contents() {
  $info = array();
  $path = drupal_get_path('module', 'openlayers') . '/plugins/quicktabs';
  $info['map'] = array(
    'path' => $path,
    'handler' => array(
      'file' => 'QuickMap.inc',
      'class' => 'QuickMap',
    ),
  );
  return $info;
}