function getlocations_fields_views_plugins in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_fields/views/getlocations_fields.views.inc \getlocations_fields_views_plugins()
Implements hook_views_plugins().
File
- modules/
getlocations_fields/ views/ getlocations_fields.views.inc, line 707 - getlocations_fields.views.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_fields_views_plugins() {
return array(
'module' => 'getlocations_fields',
'style' => array(
'getlocations_fields_streetview' => array(
'title' => t('GetLocations Fields Streetview'),
'help' => t('Displays a location in Streetview.'),
'handler' => 'getlocations_fields_plugin_style_streetview',
'theme' => 'getlocations_fields_view_streetview',
'theme path' => GETLOCATIONS_FIELDS_PATH . '/views',
'uses row plugin' => TRUE,
'uses grouping' => FALSE,
'uses options' => TRUE,
'type' => 'normal',
),
),
'argument default' => array(
'querystring' => array(
'title' => t('Bounding box from query string'),
'handler' => 'getlocations_fields_plugin_argument_default_bboxquery',
),
),
);
}