aboutsummaryrefslogtreecommitdiff
path: root/mod/ecml/views/default/ecml/keywords/googlemaps.php
blob: 2e13f9f43b73a7ba258be5493f67ad20fd9400c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * ECML Google Maps support
 *
 * @package ECML
 */

$src = (isset($vars['src'])) ? $vars['src'] : FALSE;
$width = (isset($vars['width'])) ? $vars['width'] : 425;
$height = (isset($vars['height'])) ? $vars['height'] : 350;

if ($src) {
	$src = html_entity_decode($src);
	
	$embed_src = elgg_http_add_url_query_elements($src, array('output' => 'embed'));
	$link_href = elgg_http_add_url_query_elements($src, array('source' => 'embed'));

	echo "
<iframe width=\"$width\" height=\"$height\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"$embed_src\"></iframe>
<br />
<small><a href=\"$link_href\" style=\"color:#0000FF;text-align:left\">" . elgg_echo('ecml:googlemaps:view_larger_map') . "</a></small>
";
}