aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/views/default/pages/sidebar/navigation.php
blob: ddd931dab9d1219f30fe5ec51451bf22cca291b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Navigation menu for a user's or a group's pages
 */

$title = elgg_echo('pages:navigation');

pages_register_navigation_tree(elgg_get_page_owner());

$content = elgg_view_menu('pages_nav', array('class' => 'pages-nav'));

echo elgg_view('layout/objects/module', array(
	'title' => $title,
	'body' => $content,
	'class' => 'elgg-aside-module',
));