aboutsummaryrefslogtreecommitdiff
path: root/new.php
diff options
context:
space:
mode:
authorPete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-29 16:59:14 +0000
committerPete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-29 16:59:14 +0000
commitdd489f623628930e527e8112142576bb0de24b57 (patch)
tree553f57964d3995b61c4cb1d0dfeaeb405e370a3d /new.php
parente8123c694c232509ea0c96ab19edf7cb1168b571 (diff)
downloadelgg-dd489f623628930e527e8112142576bb0de24b57.tar.gz
elgg-dd489f623628930e527e8112142576bb0de24b57.tar.bz2
Beginnings of updating VideoList to v1.8 interface, edit, delete, favorite added. Amongst other updates Friends view and breadcrumbs added.
Diffstat (limited to 'new.php')
-rw-r--r--new.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/new.php b/new.php
index 583e6bc25..169a48fb5 100644
--- a/new.php
+++ b/new.php
@@ -9,7 +9,7 @@
* @copyright Prateek Choudhary
*/
-
+global $CONFIG;
// Render the video upload page
// Load Elgg engine
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
@@ -36,10 +36,15 @@ if(isset($container_guid) && !empty($container_guid)){
}
}
-$title = sprintf(elgg_echo("videolist:new"), $page_owner->name);
+$title = sprintf(elgg_echo("videolist:add"));
+
+//set up breadcrumbs
+elgg_push_breadcrumb(elgg_echo('videolist:all'), $CONFIG->wwwroot."mod/videolist/all.php");
+elgg_push_breadcrumb(elgg_echo("videolist:add"));
-$area2 = elgg_view_title($title);
+$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);
+$body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2, $area3);
page_draw($title, $body); \ No newline at end of file