You are here

function geolocation_views_views_plugins in Geolocation Views 7

Implementation of hook_views_plugins().

File

./geolocation_views.views.inc, line 6

Code

function geolocation_views_views_plugins() {
  return array(
    'module' => 'geolocation_views',
    'style' => array(
      'google_map' => array(
        'title' => t('Google Map (Geolocation Views)'),
        'handler' => 'geolocation_views_plugin_style_google_map',
        'theme' => 'geolocation_views_map',
        'type' => 'normal',
        'uses row plugin' => TRUE,
        'uses fields' => TRUE,
        'uses options' => TRUE,
        'uses grouping' => FALSE,
        'even empty' => TRUE,
      ),
    ),
  );
}