You are here

function gmap_geo_theme in GMap Addons 7

Same name and namespace in other branches
  1. 6 gmap_geo/gmap_geo.module \gmap_geo_theme()

Implementation of hook_theme().

File

gmap_geo/gmap_geo.module, line 113
Provides a Google maps location picker widget for Geo cck fields. Provides a field formatter for Geo fields that displays point, line, or polygon data on a Google map.

Code

function gmap_geo_theme() {
  return array(
    'gmap_geo_picker' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'gmap_geo_formatter_gmap_geo' => array(
      'function' => 'theme_gmap_geo_formatter',
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'gmap_geo_formatter_gmap_geo_simplify' => array(
      'function' => 'theme_gmap_geo_formatter',
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}