aboutsummaryrefslogtreecommitdiff
path: root/all.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 /all.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 'all.php')
-rw-r--r--all.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/all.php b/all.php
index 263702f61..c1be98767 100644
--- a/all.php
+++ b/all.php
@@ -24,12 +24,14 @@ if ($page_owner === false || is_null($page_owner)) {
$title = sprintf(elgg_echo("videolist:search"));
// Get objects
-$area2 = elgg_view_title($title);
+$area1 = elgg_view('page_elements/content_header', array('context' => "everyone", 'type' => 'videolist'));
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));
+$area2 .= elgg_list_entities(array('types' => 'object', 'subtypes' => 'videolist', 'limit' => 10, 'full_view' => TRUE, 'view_type_toggle' => FALSE, 'pagination' => TRUE));
+// include a view for plugins to extend
+$area3 .= elgg_view("videolist/sidebar", array("object_type" => 'videolist'));
set_context('videolist');
-$body = elgg_view_layout('one_column_with_sidebar',$area1. $area2);
+$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3);
// Finally draw the page
page_draw($title, $body); \ No newline at end of file