From 0320936f29dd83534b5af386a981131be7981a9a Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 3 Mar 2010 23:15:07 +0000 Subject: Updated bookmarks with new interface. git-svn-id: http://code.elgg.org/elgg/trunk@5266 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/bookmarks/all.php | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 mod/bookmarks/all.php (limited to 'mod/bookmarks/all.php') diff --git a/mod/bookmarks/all.php b/mod/bookmarks/all.php new file mode 100644 index 000000000..1dcf8c898 --- /dev/null +++ b/mod/bookmarks/all.php @@ -0,0 +1,44 @@ + + * @copyright Curverider Ltd 2008-2010 + * @link http://elgg.org/ + */ + +// Start engine +require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + +// Get the current page's owner +$page_owner = page_owner_entity(); +if ($page_owner === false || is_null($page_owner)) { + $page_owner = $_SESSION['user']; + set_page_owner($_SESSION['guid']); +} + +// get the filter menu +$area1 = elgg_view('page_elements/content_header', array('context' => "everyone", 'type' => 'bookmarks')); + +// List bookmarks +set_context('search'); +$area2 .= list_entities('object','bookmarks'); +set_context('bookmarks'); + +// if logged in, get the bookmarklet +if(isloggedin()){ + $area3 = elgg_view("bookmarks/bookmarklet_menu_option"); + //include a view for plugins to extend + $area3 .= elgg_view("bookmarks/favourite", array("object_type" => 'bookmarks')); +} +//include a view for plugins to extend +$area3 .= elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks')); +//include stats +$area3 .= elgg_view("bookmarks/stats"); +// Format page +$body = elgg_view_layout('one_column_with_sidebar', $area3, $area1.$area2); + +// Draw it +echo page_draw(elgg_echo('bookmarks:all'),$body); \ No newline at end of file -- cgit v1.2.3