aboutsummaryrefslogtreecommitdiff
path: root/all.php
diff options
context:
space:
mode:
authorPete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-29 16:51:01 +0000
committerPete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-29 16:51:01 +0000
commite8123c694c232509ea0c96ab19edf7cb1168b571 (patch)
tree8696e1ad7ce34f80d4090e3389ec5e8093583204 /all.php
parent1db604a22672b06fd95e60328a16d5045ca9465c (diff)
downloadelgg-e8123c694c232509ea0c96ab19edf7cb1168b571.tar.gz
elgg-e8123c694c232509ea0c96ab19edf7cb1168b571.tar.bz2
Updated VideoList to be consistent with v1.8 mods and so the new generic page header works.
Diffstat (limited to 'all.php')
-rw-r--r--all.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/all.php b/all.php
new file mode 100644
index 000000000..263702f61
--- /dev/null
+++ b/all.php
@@ -0,0 +1,35 @@
+<?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 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']);
+}
+
+$title = sprintf(elgg_echo("videolist:search"));
+
+// Get objects
+$area2 = elgg_view_title($title);
+set_input('show_viewtype', 'all');
+$area2 .= elgg_list_entities(array('types' => 'object', 'subtypes' => 'videolist', 'container_guids' => page_owner(), 'limit' => 10, 'full_view' => TRUE, 'view_type_toggle' => FALSE, 'pagination' => TRUE));
+
+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