function getlocations_views_plugins in Get Locations 7
Same name and namespace in other branches
- 6.2 getlocations.views.inc \getlocations_views_plugins()
- 6 getlocations.views.inc \getlocations_views_plugins()
- 7.2 views/getlocations.views.inc \getlocations_views_plugins()
Implements hook_views_plugins().
File
- views/
getlocations.views.inc, line 14 - @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_views_plugins() {
return array(
'module' => 'getlocations',
'style' => array(
'getlocations' => array(
'title' => t('GetLocations'),
'help' => t('Displays rows as a map.'),
'handler' => 'getlocations_plugin_style_map',
'theme' => 'getlocations_view_map',
'theme path' => GETLOCATIONS_PATH . '/views',
'uses row plugin' => FALSE,
'uses grouping' => FALSE,
'uses options' => TRUE,
'type' => 'normal',
'uses fields' => TRUE,
),
),
);
}