From a161b38e65fa698133402f4fb23548242f494018 Mon Sep 17 00:00:00 2001 From: Dave Tosh Date: Tue, 23 Mar 2010 17:30:14 +0000 Subject: This videolist plugin shows real promise so we shall work on it for v1.8 then release it back to the community. --- index.php | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 index.php (limited to 'index.php') diff --git a/index.php b/index.php new file mode 100644 index 000000000..95026ec24 --- /dev/null +++ b/index.php @@ -0,0 +1,46 @@ + + * @copyright Prateek Choudhary + */ + require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + + $owner = page_owner_entity(); + + //get videolist GUID + $container_guid = get_input('username'); + if(isset($container_guid) && !empty($container_guid)){ + $container_guid = explode(":", $container_guid); + if($container_guid[0] == "group"){ + $container = get_entity($container_guid[1]); + set_context("groupsvideos"); + //$page_owner = page_owner_entity(); + } + else{ + + } + } + //set page owner + //set_page_owner($videolist_guid); + + $title = sprintf(elgg_echo("videolist:home"), "$owner->name"); + + // Get objects + $area2 = elgg_view_title($title); + //set_input('search_viewtype', 'gallery'); + $area2 .= list_entities("object","videolist", page_owner(), 10); + + //$area2 .= elgg_view("staticvideo/index"); + + set_context('videolist'); + $body = elgg_view_layout('one_column_with_sidebar',$area1. $area2); + + // Finally draw the page + page_draw($title, $body); +?> -- cgit v1.2.3