aboutsummaryrefslogtreecommitdiff
path: root/new.php
diff options
context:
space:
mode:
authorDave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-23 17:30:14 +0000
committerDave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-23 17:30:14 +0000
commita161b38e65fa698133402f4fb23548242f494018 (patch)
treee75300111195f40f14c2389abddac65db9068da8 /new.php
downloadelgg-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 'new.php')
-rw-r--r--new.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/new.php b/new.php
new file mode 100644
index 000000000..726245eb5
--- /dev/null
+++ b/new.php
@@ -0,0 +1,47 @@
+<?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 <synapticfield@gmail.com>
+ * @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);
+
+ page_draw($title, $body);
+?>