blob: 668100ad2f325abbc25c4dfb9950562b9c8b105b (
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
|
<?php
/**
* List all pages
*
* @package ElggPages
*/
$title = elgg_echo('pages:all');
elgg_pop_breadcrumb();
elgg_push_breadcrumb(elgg_echo('pages'));
$content = elgg_list_entities(array(
'types' => 'object',
'subtypes' => 'page_top',
'full_view' => false,
));
if (!$content) {
$content = '<p>' . elgg_echo('pages:none') . '</p>';
}
$body = elgg_view_layout('content', array(
'filter_context' => 'all',
'content' => $content,
'title' => $title,
));
echo elgg_view_page($title, $body);
|