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. --- new.php | 84 ++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 41 insertions(+), 43 deletions(-) (limited to 'new.php') diff --git a/new.php b/new.php index aa092284f..583e6bc25 100644 --- a/new.php +++ b/new.php @@ -1,47 +1,45 @@ - * @copyright Prateek Choudhary - */ - - - // Render the video upload page - // Load Elgg engine - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - gatekeeper(); - - //get videolist GUID - $container_guid = get_input('container'); - if(isset($container_guid) && !empty($container_guid)){ - $container_guid = explode(":", $container_guid); - if($container_guid[0] == "group"){ - $container = get_entity($container_guid[1]); - set_page_owner($container->getGUID()); - $page_owner = page_owner_entity(); - set_context("groupsvideos"); - set_input("container_guid", $container->getGUID()); - } - else{ - // Get the current page's owner - $page_owner = page_owner_entity(); - if ($page_owner === false || is_null($page_owner)) { - $page_owner = $_SESSION['user']; - set_page_owner($_SESSION['guid']); - set_input("container_guid", $_SESSION['guid']); - } +/** + * 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 + */ + + +// Render the video upload page +// Load Elgg engine +require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); +gatekeeper(); + +//get videolist GUID +$container_guid = get_input('container'); +if(isset($container_guid) && !empty($container_guid)){ + $container_guid = explode(":", $container_guid); + if ($container_guid[0] == "group") { + $container = get_entity($container_guid[1]); + set_page_owner($container->getGUID()); + $page_owner = page_owner_entity(); + set_context("groupsvideos"); + set_input("container_guid", $container->getGUID()); + } else { + // Get the current page's owner + $page_owner = page_owner_entity(); + if ($page_owner === false || is_null($page_owner)) { + $page_owner = $_SESSION['user']; + set_page_owner($_SESSION['guid']); + set_input("container_guid", $_SESSION['guid']); } } +} + +$title = sprintf(elgg_echo("videolist:new"), $page_owner->name); + +$area2 = elgg_view_title($title); +$area2 .= elgg_view("forms/add"); +$body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2); - $title = sprintf(elgg_echo("videolist:new"), $page_owner->name); - - $area2 = elgg_view_title($title); - $area2 .= elgg_view("forms/add"); - $body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2); - - page_draw($title, $body); -?> +page_draw($title, $body); \ No newline at end of file -- cgit v1.2.3