X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fnav.php;h=b37863aa1eb5bc606b70ceabceb976e59673a329;hb=ae3c9b7b2b6f6b8bf7a5d5e72bd66f1bff3b081d;hp=2e59ad2ac465be0eb8d108265d2cb8f8f82bf2ac;hpb=8f83c4ab6408dd3fa789304ce918205e688be4a8;p=friendica.git diff --git a/include/nav.php b/include/nav.php index 2e59ad2ac4..b37863aa1e 100644 --- a/include/nav.php +++ b/include/nav.php @@ -1,42 +1,138 @@ page['nav'] .= '' . t('Logout') . "\r\n"; -} +function nav(&$a) { + + /** + * + * Build page header and site navigation bars + * + */ + + if(!(x($a->page,'nav'))) + $a->page['nav'] = ''; + + /** + * Placeholder div for popup panel + */ + + $a->page['nav'] .= '' ; + + /** + * + * Our network is distributed, and as you visit friends some of the + * sites look exactly the same - it isn't always easy to know where you are. + * Display the current site location as a navigation aid. + * + */ + + $myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : ''); + + $sitelocation = $myident . substr($a->get_baseurl(),strpos($a->get_baseurl(),'//') + 2 ); + + + // nav links: array of array('href', 'text', 'extra css classes') + $nav = Array(); - $a->page['nav'] .= "\r\n"; + /** + * Display login or logout + */ + + if(local_user()) { + $nav['logout'] = Array('logout',t('Logout'), ""); + } + else { + $nav['login'] = Array('login',t('Login'), ($a->module == 'login'?'nav-selected':'')); + } + + + /** + * "Home" should also take you home from an authenticated remote profile connection + */ + + $homelink = ((x($_SESSION,'visitor_home')) ? $_SESSION['visitor_home'] : ''); if(($a->module != 'home') && (! (local_user()))) - $a->page['nav'] .= '' . t('Home') . "\r\n"; + $nav['home'] = array($homelink, t('Home'), ""); + + if(($a->config['register_policy'] == REGISTER_OPEN) && (! local_user()) && (! remote_user())) - $a->page['nav'] .= '' - . t('Register') . "\r\n"; + $nav['register'] = array('register',t('Register'), ""); - $a->page['nav'] .= '' . t('Site Directory') . "\r\n"; + $help_url = $a->get_baseurl() . '/help'; - if(x($_SESSION,'uid')) { + if(! get_config('system','hide-help')) + $nav['help'] = array($help_url, t('Help'), ""); - $a->page['nav'] .= '' . t('Network') - . '' . "\r\n"; - $a->page['nav'] .= '' - . t('Home') . '' . "\r\n"; + if($a->apps) + $nav['apps'] = array('apps', t('Apps'), ""); - $a->page['nav'] .= '' . t('Notifications') - . '' . "\r\n"; + $nav['search'] = array('search', t('Search'), ""); - $a->page['nav'] .= '' . t('Messages') - . '' . "\r\n"; - + $gdirpath = 'directory'; - $a->page['nav'] .= '' . t('Settings') . "\r\n"; + if(strlen(get_config('system','singleuser'))) { + $gdir = dirname(get_config('system','directory_submit_url')); + if(strlen($gdir)) + $gdirpath = $gdir; + } + + $nav['directory'] = array($gdirpath, t('Directory'), ""); + + /** + * + * The following nav links are only show to logged in users + * + */ + + if(local_user()) { + + $nav['network'] = array('network', t('Network'), ""); - $a->page['nav'] .= '' . t('Profiles') . "\r\n"; + $nav['home'] = array('profile/' . $a->user['nickname'], t('Home'), ""); - $a->page['nav'] .= '' . t('Contacts') . "\r\n"; + /* only show friend requests for normal pages. Other page types have automatic friendship. */ + + if($_SESSION['page_flags'] == PAGE_NORMAL) { + $nav['notifications'] = array('notifications', t('Notifications'), ""); + } + + $nav['messages'] = array('message', t('Messages'), ""); + + if(is_array($a->identities) && count($a->identities) > 1) { + $nav['manage'] = array('manage', t('Manage'), ""); + } + + $nav['settings'] = array('settings', t('Settings'),""); + $nav['profiles'] = array('profiles', t('Profiles'),""); + $nav['contacts'] = array('contacts', t('Contacts'),""); } - $a->page['nav'] .= "\r\n\r\n"; + + /** + * + * Provide a banner/logo/whatever + * + */ + + $banner = get_config('system','banner'); + + if($banner === false) + $banner .= 'logoFriendika'; + + + $tpl = get_markup_template('nav.tpl'); + + $a->page['nav'] .= replace_macros($tpl, array( + '$langselector' => lang_selector(), + '$sitelocation' => $sitelocation, + '$nav' => $nav, + '$banner' => $banner, + )); + + call_hooks('page_header', $a->page['nav']); + +}