X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fnav.php;h=66fdbc49b2688f1e0e63d44aa256c143028b3297;hb=87de83997499a380ef26d72acb6d5fd3df91e95b;hp=b788ed48a3a92c6b6ed65811587c75a2d3302a9b;hpb=ba8da761e669b22e16e1075e0e1e79d8b458af3e;p=friendica.git diff --git a/include/nav.php b/include/nav.php index b788ed48a3..66fdbc49b2 100644 --- a/include/nav.php +++ b/include/nav.php @@ -1,32 +1,138 @@ - page['nav'] .= "\r\n"; - if(($a->module != 'home') && (! (x($_SESSION['uid'])))) - $a->page['nav'] .= "Home\r\n"; - - $a->page['nav'] .= "Site Directory\r\n"; +function nav(&$a) { + + /** + * + * Build page header and site navigation bars + * + */ + + if(!(x($a->page,'nav'))) + $a->page['nav'] = ''; - if(x($_SESSION,'uid')) { + /** + * Placeholder div for popup panel + */ - $a->page['nav'] .= "Notifications\r\n"; + $a->page['nav'] .= '' ; - $a->page['nav'] .= "Messages\r\n"; + /** + * + * 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'] . '@' : ''); - $a->page['nav'] .= "
\r\n"; + $sitelocation = $myident . substr($a->get_baseurl(),strpos($a->get_baseurl(),'//') + 2 ); + + + // nav links: array of array('href', 'text', 'extra css classes') + $nav = Array(); + + /** + * 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':'')); + } - $a->page['nav'] .= "Logout\r\n"; - $a->page['nav'] .= "Settings\r\n"; + /** + * "Home" should also take you home from an authenticated remote profile connection + */ - $a->page['nav'] .= "Profiles\r\n"; + $homelink = ((x($_SESSION,'visitor_home')) ? $_SESSION['visitor_home'] : ''); - $a->page['nav'] .= "Contacts\r\n"; + if(($a->module != 'home') && (! (local_user()))) + $nav['home'] = array($homelink, t('Home'), ""); - $a->page['nav'] .= "user['nickname']}\">Home\r\n"; - $a->page['nav'] .= "Network\r\n"; + if(($a->config['register_policy'] == REGISTER_OPEN) && (! local_user()) && (! remote_user())) + $nav['register'] = array('register',t('Register'), ""); + + $help_url = $a->get_baseurl() . '/help'; + + if(! get_config('system','hide-help')) + $nav['help'] = array($help_url, t('Help'), ""); + + + + $nav['apps'] = array('apps', t('Apps'), ""); + + $nav['search'] = array('search', t('Search'), ""); + + $gdirpath = 'directory'; + + 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'), ""); + + $nav['home'] = array('profile/' . $a->user['nickname'], t('Home'), ""); + + + /* 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']); + +}