friendica/include/nav.php

145 lines
3.9 KiB
PHP
Raw Normal View History

2010-07-05 05:45:56 +02:00
<?php
2010-07-20 14:21:19 +02:00
function nav(&$a) {
2011-01-11 23:20:01 +01:00
/**
*
* Build page header and site navigation bars
*
*/
2010-12-17 01:35:45 +01:00
if(!(x($a->page,'nav')))
$a->page['nav'] = '';
2011-01-11 23:20:01 +01:00
/**
* Placeholder div for popup panel
*/
2010-11-09 02:30:00 +01:00
$a->page['nav'] .= '<div id="panel" style="display: none;"></div>' ;
2010-09-30 07:11:26 +02:00
2011-01-11 23:20:01 +01:00
/**
*
* 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.
*
*/
2011-03-02 05:18:47 +01:00
$myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : '');
$sitelocation = $myident . substr($a->get_baseurl(),strpos($a->get_baseurl(),'//') + 2 );
2011-01-11 23:20:01 +01:00
2011-07-14 12:05:54 +02:00
// nav links: array of array('href', 'text', 'extra css classes', 'title')
$nav = Array();
2011-01-11 23:20:01 +01:00
/**
* Display login or logout
*/
2010-11-09 02:30:00 +01:00
if(local_user()) {
2011-07-14 12:05:54 +02:00
$nav['logout'] = Array('logout',t('Logout'), "", t('End this session'));
2010-11-09 02:30:00 +01:00
}
else {
2011-07-14 12:05:54 +02:00
$nav['login'] = Array('login',t('Login'), ($a->module == 'login'?'nav-selected':''), t('Sign in'));
2010-11-09 02:30:00 +01:00
}
2010-07-20 14:21:19 +02:00
2010-07-05 05:45:56 +02:00
2011-01-11 23:20:01 +01:00
/**
* "Home" should also take you home from an authenticated remote profile connection
*/
$homelink = ((x($_SESSION,'visitor_home')) ? $_SESSION['visitor_home'] : '');
2010-07-29 03:24:07 +02:00
if(($a->module != 'home') && (! (local_user())))
2011-07-14 12:05:54 +02:00
$nav['home'] = array($homelink, t('Home'), "", t('Home Page'));
2011-01-11 23:20:01 +01:00
2010-07-29 03:24:07 +02:00
if(($a->config['register_policy'] == REGISTER_OPEN) && (! local_user()) && (! remote_user()))
2011-07-14 12:05:54 +02:00
$nav['register'] = array('register',t('Register'), "", t('Create an account'));
2010-07-29 03:24:07 +02:00
2011-04-13 16:07:21 +02:00
$help_url = $a->get_baseurl() . '/help';
2011-04-10 14:55:45 +02:00
2011-07-05 05:57:07 +02:00
if(! get_config('system','hide_help'))
2011-07-14 12:05:54 +02:00
$nav['help'] = array($help_url, t('Help'), "", t('Help and documentation'));
2011-06-14 06:37:56 +02:00
if($a->apps)
2011-07-14 12:05:54 +02:00
$nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games'));
2011-07-14 12:05:54 +02:00
$nav['search'] = array('search', t('Search'), "", t('Search site content'));
2010-07-11 11:52:47 +02:00
$gdirpath = 'directory';
if(strlen(get_config('system','singleuser'))) {
$gdir = dirname(get_config('system','directory_submit_url'));
if(strlen($gdir))
$gdirpath = $gdir;
}
2011-07-05 05:57:07 +02:00
elseif(! get_config('system','no_community_page'))
2011-07-14 12:05:54 +02:00
$nav['community'] = array('community', t('Community'), "", t('Conversations on this site'));
2011-07-14 12:05:54 +02:00
$nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory'));
2011-01-11 23:20:01 +01:00
/**
*
* The following nav links are only show to logged in users
*
*/
if(local_user()) {
2010-07-05 05:45:56 +02:00
2011-07-14 12:05:54 +02:00
$nav['network'] = array('network', t('Network'), "", t('Conversations from my friends'));
2011-07-14 12:05:54 +02:00
$nav['home'] = array('profile/' . $a->user['nickname'], t('Home'), "", t('My posts and conversations'));
2010-07-05 05:45:56 +02:00
2010-07-20 14:21:19 +02:00
2011-01-11 23:20:01 +01:00
/* only show friend requests for normal pages. Other page types have automatic friendship. */
if($_SESSION['page_flags'] == PAGE_NORMAL) {
2011-07-14 12:05:54 +02:00
$nav['notifications'] = array('notifications', t('Notifications'), "", t('Friend requests'));
}
2010-07-20 14:21:19 +02:00
2011-07-14 12:05:54 +02:00
$nav['messages'] = array('message', t('Messages'), "", t('Private mail'));
2010-07-20 07:52:31 +02:00
2011-03-02 05:18:47 +01:00
if(is_array($a->identities) && count($a->identities) > 1) {
2011-07-14 12:05:54 +02:00
$nav['manage'] = array('manage', t('Manage'), "", t('Manage other pages'));
2011-03-02 05:18:47 +01:00
}
2010-07-05 05:45:56 +02:00
2011-07-14 12:05:54 +02:00
$nav['settings'] = array('settings', t('Settings'),"", t('Account settings'));
$nav['profiles'] = array('profiles', t('Profiles'),"", t('Manage/edit profiles'));
$nav['contacts'] = array('contacts', t('Contacts'),"", t('Manage/edit friends and contacts'));
2010-07-05 05:45:56 +02:00
}
2010-07-11 11:52:47 +02:00
2011-06-13 12:52:52 +02:00
/**
* Admin page
*/
if (is_site_admin()){
2011-07-14 12:05:54 +02:00
$nav['admin'] = array('admin/', t('Admin'), "", t('Site setup and configuration'));
2011-06-13 12:52:52 +02:00
}
2010-09-27 01:56:45 +02:00
2011-01-11 23:20:01 +01:00
/**
*
* Provide a banner/logo/whatever
*
*/
2010-09-27 01:56:45 +02:00
$banner = get_config('system','banner');
if($banner === false)
2011-03-25 05:10:51 +01:00
$banner .= '<a href="http://project.friendika.com"><img id="logo-img" src="images/friendika-32.png" alt="logo" /></a><span id="logo-text"><a href="http://project.friendika.com">Friendika</a></span>';
2010-09-27 01:56:45 +02:00
2010-12-13 02:40:23 +01:00
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template('nav.tpl');
$a->page['nav'] .= replace_macros($tpl, array(
'$langselector' => lang_selector(),
'$sitelocation' => $sitelocation,
'$nav' => $nav,
'$banner' => $banner,
));
2010-12-30 23:36:35 +01:00
call_hooks('page_header', $a->page['nav']);
}