From a12e51d597b5ca22af44609b778eca66ca681492 Mon Sep 17 00:00:00 2001 From: pete Date: Thu, 18 Mar 2010 13:02:23 +0000 Subject: Included a view for plugins to extend (on the new reworked Bookmarks and Blogs). git-svn-id: http://code.elgg.org/elgg/trunk@5435 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/bookmarks/all.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'mod/bookmarks/all.php') diff --git a/mod/bookmarks/all.php b/mod/bookmarks/all.php index 6b81378a7..88258c855 100644 --- a/mod/bookmarks/all.php +++ b/mod/bookmarks/all.php @@ -20,13 +20,14 @@ set_context('search'); $area2 .= list_entities('object','bookmarks'); set_context('bookmarks'); +// include a view for plugins to extend +$area3 = elgg_view("bookmarks/sidebar", array("object_type" => 'bookmarks')); + // if logged in, get the bookmarklet -if(isloggedin()){ - $area3 = elgg_view("bookmarks/bookmarklet"); +if(isloggedin()){ + $area3 .= elgg_view("bookmarks/bookmarklet"); } -//include a view for plugins to extend -$area3 .= elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks')); -//include stats +// include statistics $area3 .= elgg_view("bookmarks/stats"); // Format page $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); -- cgit v1.2.3