blob: a4bdae7af54d9e27c0dfe4bed082873f07bb613c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* Elgg bookmarks plugin everyone page
*
* @package ElggBookmarks
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider <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' => "everyone", 'type' => 'bookmarks'));
// List bookmarks
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");
}
// 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);
|