From 65b53458f584d3a4f6441f6c4ee353bccbd69ae2 Mon Sep 17 00:00:00 2001 From: brettp Date: Mon, 26 Apr 2010 17:36:33 +0000 Subject: Bookmarks work with groups and use new style content header filter. git-svn-id: http://code.elgg.org/elgg/trunk@5878 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/bookmarks/all.php | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 mod/bookmarks/all.php (limited to 'mod/bookmarks/all.php') diff --git a/mod/bookmarks/all.php b/mod/bookmarks/all.php deleted file mode 100644 index 87dd5f852..000000000 --- a/mod/bookmarks/all.php +++ /dev/null @@ -1,37 +0,0 @@ - - * @copyright Curverider Ltd 2008-2010 - * @link http://elgg.org/ - */ - -// Start engine -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - -// get the filter menu -$area1 = elgg_view('page_elements/content_header', array('context' => "everyone", 'type' => 'bookmarks')); - -// List bookmarks -set_context('search'); -$area2 .= elgg_list_entities(array('type' => 'object', 'subtype' => '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"); -} -// include statistics -$count = elgg_get_entities(array('type' => 'object', 'subtype' => 'bookmarks', 'count' => true)); -$area3 .= elgg_view("bookmarks/stats", array('count' => $count)); -// Format page -$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); - -// Draw it -echo page_draw(elgg_echo('bookmarks:all'),$body); \ No newline at end of file -- cgit v1.2.3