You are here

gm3.views.inc in Google Maps API V3 7

File

gm3.views.inc
View source
<?php

/**
 * Implementation of hook_views_plugins().
 */
function gm3_views_plugins() {
  return array(
    'style' => array(
      'gmap' => array(
        'title' => t('Google Map'),
        'help' => t('Displays rows as a map.'),
        'handler' => 'gm3_plugin_style_gm3',
        'theme' => 'gm3_view_gm3',
        'uses row plugin' => FALSE,
        'uses row class' => TRUE,
        'uses fields' => TRUE,
        'uses grouping' => TRUE,
        'uses options' => TRUE,
        'type' => 'normal',
      ),
    ),
  );
}

Functions

Namesort descending Description
gm3_views_plugins Implementation of hook_views_plugins().