You are here

function getlocations_views_plugins in Get Locations 7.2

Same name and namespace in other branches
  1. 6.2 getlocations.views.inc \getlocations_views_plugins()
  2. 6 getlocations.views.inc \getlocations_views_plugins()
  3. 7 views/getlocations.views.inc \getlocations_views_plugins()

Implements hook_views_plugins().

File

views/getlocations.views.inc, line 15
getlocations.views.inc @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,
      ),
    ),
  );
}