diff options
author | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-23 17:30:14 +0000 |
---|---|---|
committer | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-23 17:30:14 +0000 |
commit | a161b38e65fa698133402f4fb23548242f494018 (patch) | |
tree | e75300111195f40f14c2389abddac65db9068da8 /views/default/object/videolist.php | |
download | elgg-a161b38e65fa698133402f4fb23548242f494018.tar.gz elgg-a161b38e65fa698133402f4fb23548242f494018.tar.bz2 |
This videolist plugin shows real promise so we shall work on it for v1.8 then release it back to the community.
Diffstat (limited to 'views/default/object/videolist.php')
-rw-r--r-- | views/default/object/videolist.php | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/views/default/object/videolist.php b/views/default/object/videolist.php new file mode 100644 index 000000000..23754a899 --- /dev/null +++ b/views/default/object/videolist.php @@ -0,0 +1,91 @@ +<?php + /***************************************************************************************** + /* youtube video pluggin + /* @author : Prateek Choudhary <synapticfield@gmail.com> + /* YouTube/vimeo/metacafe video Object file + /* @copyright Prateek.Choudhary + /*****************************************************************************************/ + + global $CONFIG; + + $video_file = $vars['entity']; + + if(!empty($video_file)) + { + $url = $video_file->url; + $title = $video_file->title; + $video_guid = $video_file->guid; + $video_id = $video_file->video_id; + $videotype = $video_file->videotype; + $videothumbnail = $video_file->thumbnail; + $owner = $vars['entity']->getOwnerEntity(); + $friendlytime = friendly_time($vars['entity']->time_created); + + $mime = "image/html"; + $thumbnail = $videothumbnail; + $watch_URL = $vars['url']."pg/videolist/watch/".$video_guid; + if (get_input('search_viewtype') == "gallery") + { + $videodiv .= "<div class=\"filerepo_gallery_item\">"; + $videodiv .= "<div id='videobox'>"; + $videodiv .= $title."<br />"; + $videodiv .= "<a href='".$watch_URL."'>"; + $videodiv .= "<img src='".$thumbnail."' width='120' class='tubesearch'/>"; + $videodiv .= "</a>"; + + $videodiv .= "</div>"; + //$videodiv .= "<div id='videoDescbox'>"; + //$videodiv .= "<span class='title'>".elgg_echo('videolist:videoTitle')." : </span>".$title."<br />"; + //$videodiv .= "</div>"; + + $numcomments = elgg_count_comments($video_file); + $videodiv .= "<div id='videoActionbox'>"; + if ($numcomments) + $videodiv .= "<a href=\"{$watch_URL}\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")</a> <br />"; + if($video_file->canEdit()) + { + + $videodiv .= elgg_view("output/confirmlink", array( + 'href' => $vars['url'] . "action/videolist/remove?video_id=" . $video_guid, + 'text' => elgg_echo('delete'), + 'confirm' => elgg_echo('deleteconfirm'), + )); + } + + $videodiv .= "</div></div>"; + $videodiv .= "<div class=\"clearfloat\"></div>"; + print $videodiv; + } + else if(get_input('show_viewtype') == "all") + { + $info .= '<p><a href="' .$watch_URL. '">'.$title.'</a></p>'; + $info .= "<p class=\"owner_timestamp\"><a href=\"{$vars['url']}pg/profile/{$owner->username}\">{$owner->name}</a> {$friendlytime}"; + $info .= "</p>"; + $icon = "<a href=\"{$watch_URL}\">" . elgg_view("videolist/icon", array("mimetype" => $mime, 'thumbnail' => $thumbnail, 'video_guid' => $video_guid, 'size' => 'small')) . "</a>"; + + echo elgg_view_listing($icon, $info); + } + else + { + /* + $videodiv .= "<a href='".$vars['url']."pg/videolist/watch/".$video_guid."'>"; + $videodiv .= "<img src='http://img.youtube.com/vi/".$video_id."/default.jpg' width='50' alt='unable to fetch image'/>"; + $videodiv .= "</a> <a href='".$vars['url']."pg/videolist/watch/".$video_guid."'><span class='title'>Title : </span>".$title; + $videodiv .= "</a><br />"; + */ + //video list-entity view + $info = '<p><a href="' .$watch_URL. '">'.$title.'</a></p>'; + $info .= "<p class=\"owner_timestamp\"><a href=\"{$vars['url']}pg/profile/{$owner->username}\">{$owner->name}</a> {$friendlytime}"; + $info .= "</p>"; + $icon = "<a href=\"{$watch_URL}\">" . elgg_view("videolist/icon", array("mimetype" => $mime, 'thumbnail' => $thumbnail, 'video_guid' => $video_guid, 'size' => 'small')) . "</a>"; + + echo elgg_view_listing($icon, $info); + } + + + } + else + { + echo "No videos were found."; + } +?> |