You are here

function styled_google_views_views_plugins in Styled Google Map 7.2

Same name and namespace in other branches
  1. 7 styled_google_views/styled_google_views.views.inc \styled_google_views_views_plugins()

Implements hook_views_plugin().

File

styled_google_views/styled_google_views.views.inc, line 11
Name: styled_google_views.views.inc.

Code

function styled_google_views_views_plugins() {
  return array(
    'style' => array(
      'styled_google_map' => array(
        'title' => t('Styled Google Map'),
        'help' => t('Displays content on a Styled Google Map'),
        'handler' => 'styled_google_map_style_plugin',
        'uses options' => TRUE,
        'uses fields' => TRUE,
        'type' => 'normal',
        'uses grouping' => FALSE,
        'use pager' => FALSE,
        'use more' => FALSE,
        'uses hook menu' => FALSE,
        'theme' => 'styled_google_view',
        'even empty' => TRUE,
      ),
    ),
  );
}