diff options
Diffstat (limited to 'mod/bookmarks/friends.php')
-rw-r--r-- | mod/bookmarks/friends.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/mod/bookmarks/friends.php b/mod/bookmarks/friends.php deleted file mode 100644 index 158108553..000000000 --- a/mod/bookmarks/friends.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php -/** - * Elgg bookmarks plugin friends' page - * - * @package ElggBookmarks - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd <info@elgg.com> - * @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' => "friends", 'type' => 'bookmarks')); - -// List bookmarks -set_context('search'); -$area2 .= list_user_friends_objects(page_owner(),'bookmarks',10,false,false); -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"); -} -// Format page -$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); - -// Draw it -echo page_draw(elgg_echo('bookmarks:friends'),$body);
\ No newline at end of file |