You are here

function openlayers_services_theme in Openlayers 7.3

Implements hook_theme().

File

modules/openlayers_services/openlayers_services.module, line 52

Code

function openlayers_services_theme($existing, $type, $theme, $path) {
  return array(
    'openlayers_map_iframe' => array(
      'arguments' => array(
        'page' => '',
        'scripts' => '',
        'styles' => '',
      ),
      'template' => 'openlayers-map--iframe',
      'path' => $path . '/themes',
    ),
  );
}