You are here

function gmap_views_views_style_plugins in GMap Module 5

Implementation of hook_views_style_plugins().

File

./gmap_views.module, line 11
GMap Views: A Views Style plugin providing a GMap view.

Code

function gmap_views_views_style_plugins() {
  return array(
    'gmap' => array(
      'name' => t('Gmap View'),
      'theme' => 'views_view_gmap',
      'needs_fields' => true,
      'validate' => 'gmap_views_validate',
    ),
  );
}