You are here

openlayers_views.views.theme.inc in Openlayers 7.2

This file holds views theme function for style plugin.

File

modules/openlayers_views/views/openlayers_views.views.theme.inc
View source
<?php

/**
 * @file
 * This file holds views theme function for style plugin.
 *
 * @ingroup openlayers
 */

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

Related topics

Functions

Namesort descending Description
theme_openlayers_views_map Implementation of theme function