blob: afda594cb2b41c45572fa39c953656044fd6c5b3 (
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
50
51
52
|
<?php
/**
* List a user's or group's pages
*
* @package ElggPages
*/
$guid = get_input('guid');
elgg_set_page_owner_guid($guid);
$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() == get_loggedin_userid()) {
$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);
|