diff options
Diffstat (limited to 'mod/ecml')
-rw-r--r-- | mod/ecml/start.php | 2 | ||||
-rw-r--r-- | mod/ecml/views/default/ecml/keywords/vimeo.php | 54 |
2 files changed, 55 insertions, 1 deletions
diff --git a/mod/ecml/start.php b/mod/ecml/start.php index 6bf1a565d..51082e9c6 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('youtube', 'slideshare'); + $keywords = array('youtube', 'slideshare', 'vimeo'); foreach ($keywords as $keyword) { $return_value[$keyword] = array( 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 |