You are here

function theme_openlayers_views_map in Openlayers 7.2

Same name and namespace in other branches
  1. 6.2 modules/openlayers_views/views/openlayers_views.views.theme.inc \theme_openlayers_views_map()
  2. 6 modules/openlayers_views/views/openlayers_views.views.theme.inc \theme_openlayers_views_map()

Implementation of theme function

File

modules/openlayers_views/views/openlayers_views.views.theme.inc, line 13
This file holds views theme function for style plugin.

Code

function theme_openlayers_views_map($args) {
  return (isset($args['title']) ? '<h3>' . $args['title'] . '</h3>' : '') . '<div class="openlayers-views-map">' . $args['map'] . '</div>';
}