You are here

function gmap_location_t in GMap Module 7.2

Wrapper function for i18n_string_build() if i18n_string enabled.

2 calls to gmap_location_t()
gmap_location_admin_settings in ./gmap_location.module
Admin Settings Page.
gmap_location_block_configure in ./gmap_location.module
Implements hook_block_configure().

File

./gmap_location.module, line 958
GMap Location module is a module to add some gmap funcationality based on location.modules information.

Code

function gmap_location_t($name, $string) {
  if (module_exists('i18n_string')) {
    return i18n_string_build($name, $string);
  }
  else {
    return $string;
  }
}