aboutsummaryrefslogtreecommitdiff
path: root/mod/ecml/views/default/ecml
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-14 22:43:47 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-14 22:43:47 +0000
commit527c9dca0b5d71513adff8c7f8df6b88315bc6cf (patch)
treebb5a6a2f47bd4dd5065181d0b1cb3a2d9ebee2f3 /mod/ecml/views/default/ecml
parent436ecaf476e5052434d0841aeeb7c0ccf8dd76f1 (diff)
downloadelgg-527c9dca0b5d71513adff8c7f8df6b88315bc6cf.tar.gz
elgg-527c9dca0b5d71513adff8c7f8df6b88315bc6cf.tar.bz2
Added vimeo support to ECML.
git-svn-id: http://code.elgg.org/elgg/trunk@5736 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/ecml/views/default/ecml')
-rw-r--r--mod/ecml/views/default/ecml/keywords/vimeo.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/mod/ecml/views/default/ecml/keywords/vimeo.php b/mod/ecml/views/default/ecml/keywords/vimeo.php
new file mode 100644
index 000000000..6ca1294a8
--- /dev/null
+++ b/mod/ecml/views/default/ecml/keywords/vimeo.php
@@ -0,0 +1,54 @@
+<?php
+/**
+ * ECML vimeo 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'] : 480;
+$height = (isset($vars['height'])) ? $vars['height'] : 385;
+
+// need to extract the video id.
+// the src arg can take a full url or an id.
+// assume if no youtube.com that it's an id.
+if (strpos($src, 'vimeo.com') === FALSE) {
+ $vid = $src;
+} else {
+ // we love vimeo.
+ list($address, $vid) = explode('vimeo.com/', $src);
+}
+
+if ($vid) {
+ $movie_url = "http://vimeo.com/moogaloop.swf?";
+ $query = array('clip_id' => $vid, 'server' => 'vimeo.com');
+
+ $params = array(
+ 'show_title' => 1,
+ 'show_byline' => 1,
+ 'show_portrait' => 0,
+ 'color' => '',
+ 'fullscreen' => 1
+ );
+
+ foreach ($params as $param => $default) {
+ $query[$param] = (isset($vars[$param])) ? $vars[$param] : $default;
+ }
+
+ $query_str = http_build_query($query);
+ $movie_url .= $query_str;
+
+ echo "
+<object width=\"$width\" height=\"$height\">
+ <param name=\"allowfullscreen\" value=\"true\" />
+ <param name=\"allowscriptaccess\" value=\"always\" />
+ <param name=\"movie\" value=\"$movie_url\" />
+ <embed src=\"$movie_url\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"$width\" height=\"$height\">
+ </embed>
+</object>
+ ";
+} \ No newline at end of file