diff options
author | Sem <sembrestels@riseup.net> | 2011-11-03 22:18:13 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2011-11-03 22:18:13 +0100 |
commit | fc7921d05953d3de3130f9d49b7d73ec4c466b34 (patch) | |
tree | dcd6972df015852d455709b4b9111500a2c1602d /pages/videolist/add.php | |
parent | 4df99e6a3803f735d6cfa35d66e0b52c3b946255 (diff) | |
download | elgg-fc7921d05953d3de3130f9d49b7d73ec4c466b34.tar.gz elgg-fc7921d05953d3de3130f9d49b7d73ec4c466b34.tar.bz2 |
Upgraded "add video" page.
Diffstat (limited to 'pages/videolist/add.php')
-rw-r--r-- | pages/videolist/add.php | 62 |
1 files changed, 24 insertions, 38 deletions
diff --git a/pages/videolist/add.php b/pages/videolist/add.php index 881fba6ff..0ae067391 100644 --- a/pages/videolist/add.php +++ b/pages/videolist/add.php @@ -1,49 +1,35 @@ <?php /** - * Elgg Video Plugin - * This plugin allows users to create a library of youtube/vimeo/metacafe videos + * Add a new video * - * @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 + * @package ElggVideolist */ -// Render the video upload page -// Load Elgg engine -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); +$page_owner = elgg_get_page_owner_entity(); + gatekeeper(); +group_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 = elgg_echo('videolist:add'); -$title = sprintf(elgg_echo("videolist:add")); +// set up breadcrumbs +elgg_push_breadcrumb(elgg_echo('videolist'), "file/all"); +if (elgg_instanceof($owner, 'user')) { + elgg_push_breadcrumb($owner->name, "videolist/owner/$owner->username"); +} else { + elgg_push_breadcrumb($owner->name, "videolist/group/$owner->guid/all"); +} +elgg_push_breadcrumb($title); -//set up breadcrumbs -elgg_push_breadcrumb(elgg_echo('videolist:all'), elgg_get_site_url()."videolist/all/"); -elgg_push_breadcrumb(elgg_echo("videolist:add")); +// create form +$form_vars = array(); +$body_vars = array(); +$content = elgg_view_form('videolist/add', $form_vars, $body_vars); -$area1 = elgg_view('navigation/breadcrumbs'); -$area1 .= elgg_view('page_elements/content_header', array('context' => "action", 'type' => 'videolist')); -$area2 .= elgg_view("forms/add"); -$body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2, $area3); +$body = elgg_view_layout('content', array( + 'content' => $content, + 'title' => $title, + 'filter' => '', +)); -page_draw($title, $body); +echo elgg_view_page($title, $body); |