From 4fa7aaa7e363514dc2def25cceafd8cf4333404c Mon Sep 17 00:00:00 2001 From: Pete Harris Date: Mon, 29 Mar 2010 18:43:13 +0000 Subject: Added a basic edit view for videolist (form action/tokens needs fixing still) --- edit.php | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 edit.php (limited to 'edit.php') diff --git a/edit.php b/edit.php new file mode 100644 index 000000000..515793003 --- /dev/null +++ b/edit.php @@ -0,0 +1,43 @@ +container_guid; + if (!empty($container_guid)) + if ($page_owner = get_entity($container_guid)) { + set_page_owner($container_guid->guid); + } + if (empty($page_owner)) { + $page_owner = $_SESSION['user']; + set_page_owner($_SESSION['guid']); + } + } + + if ($video_file->canEdit()) { + // set up breadcrumbs + elgg_push_breadcrumb(elgg_echo('videolist:all'), $CONFIG->wwwroot."mod/videolist/all.php"); + elgg_push_breadcrumb(sprintf(elgg_echo("videolist:user"),$page_owner->name), $CONFIG->wwwroot."pg/videolist/".$page_owner->username); + elgg_push_breadcrumb(sprintf(elgg_echo("videolist:edit"))); + + $area1 = elgg_view('navigation/breadcrumbs'); + $area1 .= elgg_view_title($title = elgg_echo('videolist:edit')); + $area2 = elgg_view("forms/edit",array('entity' => $video_file)); + $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); + page_draw(elgg_echo("videolist:edit"), $body); + } +} else { + forward(); +} + +?> \ No newline at end of file -- cgit v1.2.3