You are here

function openlayers_views_theme in Openlayers 6.2

Same name and namespace in other branches
  1. 6 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 24
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_group_display_item' => array(
      'arguments' => array(
        'name' => '',
        'description' => '',
      ),
      'file' => 'includes/openlayers_views.theme.inc',
    ),
    'openlayers_views_render_feature' => array(
      'arguments' => array(
        'feature' => '',
        'record' => '',
      ),
      'file' => 'includes/openlayers_views.theme.inc',
    ),
  );
}