aboutsummaryrefslogtreecommitdiff
path: root/mod/ecml
diff options
context:
space:
mode:
Diffstat (limited to 'mod/ecml')
-rw-r--r--mod/ecml/start.php2
-rw-r--r--mod/ecml/views/default/ecml/keywords/googlemaps.php31
2 files changed, 32 insertions, 1 deletions
diff --git a/mod/ecml/start.php b/mod/ecml/start.php
index d1a86f82b..c6a9ff38b 100644
--- a/mod/ecml/start.php
+++ b/mod/ecml/start.php
@@ -128,7 +128,7 @@ function ecml_parse_view($hook, $entity_type, $return_value, $params) {
* @return unknown_type
*/
function ecml_keyword_hook($hook, $entity_type, $return_value, $params) {
- $keywords = array('entity', 'view', 'youtube', 'slideshare', 'vimeo');
+ $keywords = array('entity', 'view', 'youtube', 'slideshare', 'vimeo', 'googlemaps');
foreach ($keywords as $keyword) {
$return_value[$keyword] = array(
diff --git a/mod/ecml/views/default/ecml/keywords/googlemaps.php b/mod/ecml/views/default/ecml/keywords/googlemaps.php
new file mode 100644
index 000000000..c75023045
--- /dev/null
+++ b/mod/ecml/views/default/ecml/keywords/googlemaps.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * ECML Google Maps support
+ *
+ * @package ECML
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2010
+ * @link http://elgg.org/
+ */
+
+$src = (isset($vars['src'])) ? $vars['src'] : FALSE;
+$width = (isset($vars['width'])) ? $vars['width'] : 425;
+$height = (isset($vars['height'])) ? $vars['height'] : 350;
+
+if ($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>
+
+";
+} \ No newline at end of file