blob: 2a7ea4be98f2802e898daf87f8f573a8fd15958f (
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
|
<?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,
));
$body = elgg_view_layout('content', array(
'filter_context' => 'all',
'content' => $content,
'title' => $title,
));
echo elgg_view_page($title, $body);
|