blob: bdb8fc793e26b18ed08d8a2dc80849a1c688f6fd (
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
|
<?php
/**
* Elgg bookmarks plugin everyone page
*
* @package ElggBookmarks
*/
elgg_pop_breadcrumb();
elgg_push_breadcrumb(elgg_echo('bookmarks'));
elgg_register_title_button();
$content = elgg_list_entities(array(
'type' => 'object',
'subtype' => 'bookmarks',
'limit' => 10,
'full_view' => false,
'view_toggle_type' => false
));
if (!$content) {
$content = elgg_echo('bookmarks:none');
}
$title = elgg_echo('bookmarks:everyone');
$body = elgg_view_layout('content', array(
'filter_context' => 'all',
'content' => $content,
'title' => $title,
'sidebar' => elgg_view('bookmarks/sidebar'),
));
echo elgg_view_page($title, $body);
|