You are here

function theme_gm3_region_region_text in Google Maps API V3 7

Themes for field types.

File

gm3_region/gm3_region.theme.inc, line 17

Code

function theme_gm3_region_region_text($variables) {
  return array(
    '#markup' => t('Region: %region_id', array(
      '%region_id' => $variables['data']['region_id'],
    )),
  );
}