You are here

function openlayers_views_theme in Openlayers 6

Same name and namespace in other branches
  1. 6.2 modules/openlayers_views/openlayers_views.module \openlayers_views_theme()
  2. 7.2 modules/openlayers_views/openlayers_views.module \openlayers_views_theme()

Implementation of hook_theme().

File

modules/openlayers_views/openlayers_views.module, line 33
This file holds the main Drupal hook functions and private functions for the openlayers_views module.

Code

function openlayers_views_theme($existing, $type, $theme, $path) {
  return array(
    'openlayers_views_feature_style' => array(
      'arguments' => array(
        'view' => NULL,
        'row' => NULL,
        'group' => NULL,
      ),
      'file' => 'includes/openlayers_views.theme.inc',
    ),
  );
}