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/widgets/videolist_view/view.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/widgets/videolist_view/view.php')
-rw-r--r-- | views/default/widgets/videolist_view/view.php | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/views/default/widgets/videolist_view/view.php b/views/default/widgets/videolist_view/view.php new file mode 100644 index 000000000..889ee5726 --- /dev/null +++ b/views/default/widgets/videolist_view/view.php @@ -0,0 +1,58 @@ +<?php +/**
+ * Elgg Videolist Plugin
+ * This plugin allows users to create a library of youtube videos
+ *
+ * @package ElggProfile
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Prateek Choudhary <synapticfield@gmail.com>
+ * @copyright Prateek Choudhary
+ */ + + + //the number of files to display + $number = (int) $vars['entity']->num_display; + if (!$number) + $number = 5; + + $owner = page_owner_entity(); + $owner_videos = get_entities("object", "videolist", page_owner(), $order_by="time_created desc", $limit=$number); + //echo "<div class=\"clearfloat\"></div>"; + if ($owner_videos) { + echo '<div id="profile_video_widget_container">'; + foreach($owner_videos as $videos){ + $url = $videos->url; + $title = $videos->title; + $video_id = $videos->video_id; + $videothumbnail = $videos->thumbnail; + echo '<div id="profile_video_image_container">'; + //get video cover image + echo '<div id="videothumbnail-box">'; + echo "<a href='".$vars['url']."pg/videolist/watch/".$videos->guid."'>"; + echo "<img src=\"".$videothumbnail."\" width=\"75\"/>"; + echo '</a>'; + echo '</div>'; + echo '<div id="videotitle-box">'; + echo "<a href='".$vars['url']."pg/videolist/watch/".$videos->guid."'>"; + echo $title; + echo '</a>'; + $numcomments = elgg_count_comments($videos); + if ($numcomments) + echo "<br /><span class='vid-comment-widget'><a href=\"".$vars['url']."pg/videolist/watch/".$videos->guid."\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")</a></span> <br />"; + echo '</div>'; + echo '</div>'; + } + echo "</div>"; + echo "<div class=\"clearfloat\"></div>"; + //get a link to the users videos + $users_video_url = $vars['url'] . "pg/videolist/owned/" . $owner->username; + echo "<div style=\"margin-left:10px;\">"; + echo "<span class=\"profile_album_link\"><a href=\"{$users_video_url}\">" . elgg_echo('video:more') . "</a></span>"; + echo "</div>"; + echo "<div id=\"widget-boundary\"></div>"; + } + else { + echo elgg_echo("album:none"); + } + +?> |