You are here

function openlayers_views_theme in Openlayers 7.2

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

Implements hook_theme().

File

modules/openlayers_views/openlayers_views.module, line 27
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',
    ),
    'openlayers_image_formatter' => array(
      'variables' => array(
        'item' => NULL,
        'node' => NULL,
        'field' => array(),
        'display_settings' => array(),
      ),
      'file' => 'views/openlayers_views.views.theme.inc',
    ),
    'openlayers_views_map' => array(
      'arguments' => array(
        'map' => array(),
        'title' => '',
      ),
      'file' => 'views/openlayers_views.views.theme.inc',
    ),
  );
}