friendica/include/nav.php

192 lines
5.5 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
*/
$nav['usermenu']=array();
$userinfo = null;
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'));
// user menu
$nav['usermenu'][] = Array('profile/' . $a->user['nickname'], t('Status'), "", t('Your posts and conversations'));
$nav['usermenu'][] = Array('profile/' . $a->user['nickname']. '?tab=profile', t('Profile'), "", t('Your profile page'));
$nav['usermenu'][] = Array('photos/' . $a->user['nickname'], t('Photos'), "", t('Your photos'));
$nav['usermenu'][] = Array('events/', t('Events'), "", t('Your events'));
$nav['usermenu'][] = Array('notes/', t('Personal notes'), "", t('Your personal photos'));
// user info
$r = q("SELECT micro FROM contact WHERE uid=%d AND self=1", intval($a->user['uid']));
$userinfo = array(
'icon' => (count($r) ? $r[0]['micro']: $a->get_baseurl()."/images/default-profile-mm.jpg"),
'name' => $a->user['username'],
);
2010-11-09 02:30:00 +01:00
}
else {
2011-07-25 16:52:30 +02:00
$nav['login'] = Array('login',t('Login'), ($a->module == 'login'?'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-08-31 16:18:03 +02:00
if(count($a->apps)>0)
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:08:48 +02:00
$nav['network'] = array('network', t('Network'), "", t('Conversations from your friends'));
2011-07-14 12:08:48 +02:00
$nav['home'] = array('profile/' . $a->user['nickname'], t('Home'), "", t('Your 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) {
$nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests'));
$nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications'));
2012-01-23 09:23:37 +01:00
$nav['notifications']['all']=array('notifications/network', t('See all notifications', "", ""));
}
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-11-08 02:25:40 +01:00
$banner .= '<a href="http://friendica.com"><img id="logo-img" src="images/friendika-32.png" alt="logo" /></a><span id="logo-text"><a href="http://friendica.com">Friendica</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,
'$emptynotifications' => t('Nothing new here'),
'$userinfo' => $userinfo,
'$sel' => $a->nav_sel,
2011-08-31 16:18:03 +02:00
'$apps' => $a->apps,
));
2010-12-30 23:36:35 +01:00
call_hooks('page_header', $a->page['nav']);
}
/*
* Set a menu item in navbar as selected
*
*/
function nav_set_selected($item){
$a = get_app();
$a->nav_sel = array(
'community' => null,
'network' => null,
'home' => null,
'profiles' => null,
'introductions' => null,
'notifications' => null,
'messages' => null,
'directory' => null,
'settings' => null,
'contacts' => null,
'manage' => null,
'register' => null,
);
$a->nav_sel[$item] = 'selected';
}