From 52255de580654f351205b19565be601bd4caaacb Mon Sep 17 00:00:00 2001 From: Brett Profitt Date: Fri, 26 Mar 2010 22:44:48 +0000 Subject: First pass at cleaning up videolist. --- index.php | 82 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 39 insertions(+), 43 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 9c2b446a4..bbeae7cf4 100644 --- a/index.php +++ b/index.php @@ -1,46 +1,42 @@ + * @copyright Prateek Choudhary + */ +require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - /** - * Elgg Video Plugin - * This plugin allows users to create a library of youtube/vimeo/metacafe videos - * - * @package Elgg - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Prateek Choudhary - * @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{ - - } +$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(); } - //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); -?> +} +//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); \ No newline at end of file -- cgit v1.2.3