28 lines
605 B
PHP
28 lines
605 B
PHP
<?php
|
|
|
|
require_once("include/nav.php");
|
|
|
|
function navigation_content(&$a) {
|
|
|
|
$nav_info = nav_info($a);
|
|
|
|
/**
|
|
* Build the page
|
|
*/
|
|
|
|
$tpl = get_markup_template('navigation.tpl');
|
|
return replace_macros($tpl, array(
|
|
'$baseurl' => $a->get_baseurl(),
|
|
'$langselector' => lang_selector(),
|
|
'$sitelocation' => $nav_info['sitelocation'],
|
|
'$nav' => $nav_info['nav'],
|
|
'$banner' => $nav_info['banner'],
|
|
'$emptynotifications' => t('Nothing new here'),
|
|
'$userinfo' => $nav_info['userinfo'],
|
|
'$sel' => $a->nav_sel,
|
|
'$apps' => $a->apps,
|
|
'$clear_notifs' => t('Clear notifications')
|
|
));
|
|
|
|
}
|