You are here

function theme_gm3_rectangle_text in Google Maps API V3 7

Themes for field types.

Note, this is A LOT simpler than renaming every instance of "polygon" to "gm3_polygon", although I may do that in the future.

1 theme call to theme_gm3_rectangle_text()
theme_rectangle_text in gm3_field/gm3_field.module

File

gm3_field/gm3_field.module, line 679

Code

function theme_gm3_rectangle_text($variables) {
  return array(
    '#markup' => $variables['data']['rectangle'],
  );
}