You are here

addressfield-staticmap-static-map.tpl.php in Address Field Static Map 7

File

addressfield-staticmap-static-map.tpl.php
View source
<?php

if (isset($settings['text_address']) && is_string($settings['text_address'])) {
  ?>
  <div><?php

  print $settings['text_address'];
  ?></div>
<?php

}
if (isset($settings['directions'])) {
  ?>
  <div><?php

  print $settings['directions'];
  ?></div>
<?php

}
if (isset($settings['link'])) {
  ?>
  <a title="<?php

  print t('Go to Google map of this location');
  ?>" <?php

  print $settings['target'];
  ?> href="<?php

  print $settings['link'];
  ?>">
<?php

}
print theme_image(array(
  'path' => $settings['staticmap_url'],
  'alt' => $address,
  'attributes' => array(
    'class' => 'static_google_map',
  ),
));
if (isset($settings['link'])) {
  ?>
  </a>
<?php

}