You are here

styled_google_views.views.inc in Styled Google Map 7.2

Same filename and directory in other branches
  1. 7 styled_google_views/styled_google_views.views.inc

File

styled_google_views/styled_google_views.views.inc
View source
<?php

/**
 * @file
 * Name: styled_google_views.views.inc.
 */

/**
 * Implements hook_views_plugin().
 */
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,
      ),
    ),
  );
}

Functions

Namesort descending Description
styled_google_views_views_plugins Implements hook_views_plugin().