]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Updated Likes on Blog and Videolist single entity pages
authorPete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sun, 11 Apr 2010 23:04:28 +0000 (23:04 +0000)
committerPete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sun, 11 Apr 2010 23:04:28 +0000 (23:04 +0000)
views/default/object/watch.php

index f8dd1ceacd9041949996955adac3450449ca9b71..165dc6c3932867a5c3ab4bde3c85fad990e58bc4 100644 (file)
@@ -22,22 +22,22 @@ if(isset($vars['entity'])) {
        $videodiv .= "<div class='video_view'>";
        
        // view for plugins to extend   
-       $videodiv .= elgg_view('videolist/options', array('entity' => $videos));
+       $videodiv .= elgg_view('videolist/options', array('entity' => $videos)) .
+                                elgg_view_likes($videos); // include likes
        
        if ($videos->videotype == "youtube") {
-               $videodiv .= "<object width=\"$width\" height=\"$height\"><param name=\"movie\" value=\"http://{$url}&hl=en&fs=1&showinfo=0&auoplay=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><embed src=\"http://{$url}&hl=en&fs=1&showinfo=0&autoplay=1\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" width=\"$width\" height=\"$height\"></embed></object>";
+               $videodiv .= "<br /><object width=\"$width\" height=\"$height\"><param name=\"movie\" value=\"http://{$url}&hl=en&fs=1&showinfo=0&auoplay=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><embed src=\"http://{$url}&hl=en&fs=1&showinfo=0&autoplay=1\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" width=\"$width\" height=\"$height\"></embed></object>";
        } else if($videos->videotype == "metacafe"){
                $videoid_id = $videoid;
                $path = explode("/", $videos->thumbnail);
                $path = array_reverse($path);
                $thumbnailArray = explode(".", $path[0]);
                $videoid = $videoid_id."/".$thumbnailArray[0].".swf";
-               $videodiv .= "<embed src=\"http://www.metacafe.com/fplayer/".$videoid."\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"$width\" height=\"$height\" name=\"Metacafe_".$videoid_id."\"></embed>";
+               $videodiv .= "<br /><embed src=\"http://www.metacafe.com/fplayer/".$videoid."\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"$width\" height=\"$height\" name=\"Metacafe_".$videoid_id."\"></embed>";
        } else if($videos->videotype == "vimeo") {
-               $videodiv .= "<object width=\"$width\" height=\"$height\"><param name=\"allowfullscreen\" value=\"true\" /><param name=\"allowscriptaccess\" value=\"always\" /><param name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=".$videoid."&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1\" /><embed src=\"http://vimeo.com/moogaloop.swf?clip_id=".$videoid."&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"$width\" height=\"$height\"></embed></object>";
+               $videodiv .= "<br /><object width=\"$width\" height=\"$height\"><param name=\"allowfullscreen\" value=\"true\" /><param name=\"allowscriptaccess\" value=\"always\" /><param name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=".$videoid."&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1\" /><embed src=\"http://vimeo.com/moogaloop.swf?clip_id=".$videoid."&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"$width\" height=\"$height\"></embed></object>";
        }
 
-       $videodiv .= "<br />".elgg_view_likes($videos);
        $videodiv .= "</div>";
        $videodiv .= elgg_view_comments($videos);
        print $videodiv;