function gm3_views_plugins in Google Maps API V3 7
Implementation of hook_views_plugins().
File
- ./
gm3.views.inc, line 6
Code
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',
),
),
);
}