blob: 6a89e6092098ed11da100ffa3a1fb7113233bb6f (
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
38
39
40
41
42
43
44
45
46
47
48
49
 | <?php
/**
 * List a user's or group's pages
 *
 * @package ElggPages
 */
$owner = elgg_get_page_owner_entity();
if (!$owner) {
}
// access check for closed groups
group_gatekeeper();
$title = elgg_echo('pages:owner', array($owner->name));
elgg_push_breadcrumb($owner->name);
$content = elgg_list_entities(array(
	'types' => 'object',
	'subtypes' => 'page_top',
	'container_guid' => elgg_get_page_owner_guid(),
	'limit' => $limit,
	'full_view' => false,
));
if (!$content) {
	$content = '<p>' . elgg_echo('pages:none') . '</p>';
}
$filter_context = '';
if (elgg_get_page_owner_guid() == elgg_get_logged_in_user_guid()) {
	$filter_context = 'mine';
}
$params = array(
	'filter_context' => $filter_context,
	'content' => $content,
	'title' => $title,
	'sidebar' => elgg_view('pages/sidebar/navigation'),
);
if (elgg_instanceof($owner, 'group')) {
	$params['filter'] = '';
}
$body = elgg_view_layout('content', $params);
echo elgg_view_page($title, $body);
 |