3 * @file include/nav.php
6 use Friendica\Content\Feature;
7 use Friendica\Core\Config;
8 use Friendica\Core\System;
9 use Friendica\Database\DBM;
11 function nav(App $a) {
15 * Build page header and site navigation bars
19 if (!(x($a->page,'nav')))
22 $a->page['htmlhead'] .= replace_macros(get_markup_template('nav_head.tpl'), array());
25 * Placeholder div for popup panel
28 $a->page['nav'] .= '<div id="panel" style="display: none;"></div>' ;
30 $nav_info = nav_info($a);
36 $tpl = get_markup_template('nav.tpl');
38 $a->page['nav'] .= replace_macros($tpl, array(
39 '$baseurl' => System::baseUrl(),
40 '$sitelocation' => $nav_info['sitelocation'],
41 '$nav' => $nav_info['nav'],
42 '$banner' => $nav_info['banner'],
43 '$emptynotifications' => t('Nothing new here'),
44 '$userinfo' => $nav_info['userinfo'],
45 '$sel' => $a->nav_sel,
47 '$clear_notifs' => t('Clear notifications'),
48 '$search_hint' => t('@name, !forum, #tags, content')
51 call_hooks('page_header', $a->page['nav']);
55 * @brief Prepares a list of navigation links
58 * @return array Navigation links
59 * string 'sitelocation' => The webbie (username@site.com)
60 * array 'nav' => Array of links used in the nav menu
61 * string 'banner' => Formatted html link with banner image
62 * array 'userinfo' => Array of user information (name, icon)
64 function nav_info(App $a)
66 $ssl_state = ((local_user()) ? true : false);
69 * Our network is distributed, and as you visit friends some of the
70 * sites look exactly the same - it isn't always easy to know where you are.
71 * Display the current site location as a navigation aid.
74 $myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : '');
76 $sitelocation = $myident . substr(System::baseUrl($ssl_state), strpos(System::baseUrl($ssl_state), '//') + 2 );
78 // nav links: array of array('href', 'text', 'extra css classes', 'title')
81 // Display login or logout
82 $nav['usermenu'] = array();
86 $nav['logout'] = array('logout', t('Logout'), '', t('End this session'));
89 $nav['usermenu'][] = array('profile/' . $a->user['nickname'], t('Status'), '', t('Your posts and conversations'));
90 $nav['usermenu'][] = array('profile/' . $a->user['nickname'] . '?tab=profile', t('Profile'), '', t('Your profile page'));
91 $nav['usermenu'][] = array('photos/' . $a->user['nickname'], t('Photos'), '', t('Your photos'));
92 $nav['usermenu'][] = array('videos/' . $a->user['nickname'], t('Videos'), '', t('Your videos'));
93 $nav['usermenu'][] = array('events/', t('Events'), '', t('Your events'));
94 $nav['usermenu'][] = array('notes/', t('Personal notes'), '', t('Your personal notes'));
97 $contact = dba::selectFirst('contact', ['micro'], ['uid' => $a->user['uid'], 'self' => true]);
99 'icon' => (DBM::is_result($contact) ? $a->remove_baseurl($contact['micro']) : 'images/person-48.jpg'),
100 'name' => $a->user['username'],
103 $nav['login'] = array('login', t('Login'), ($a->module == 'login' ? 'selected' : ''), t('Sign in'));
106 // "Home" should also take you home from an authenticated remote profile connection
107 $homelink = get_my_url();
109 $homelink = ((x($_SESSION,'visitor_home')) ? $_SESSION['visitor_home'] : '');
112 if (($a->module != 'home') && (! (local_user()))) {
113 $nav['home'] = array($homelink, t('Home'), '', t('Home Page'));
116 if (($a->config['register_policy'] == REGISTER_OPEN) && (! local_user()) && (! remote_user())) {
117 $nav['register'] = array('register', t('Register'), '', t('Create an account'));
122 if (!Config::get('system', 'hide_help')) {
123 $nav['help'] = array($help_url, t('Help'), '', t('Help and documentation'));
126 if (count($a->apps) > 0) {
127 $nav['apps'] = array('apps', t('Apps'), '', t('Addon applications, utilities, games'));
130 if (local_user() || !Config::get('system', 'local_search')) {
131 $nav['search'] = array('search', t('Search'), '', t('Search site content'));
133 $nav['searchoption'] = array(
138 if (Config::get('system', 'poco_local_search')) {
139 $nav['searchoption'][] = t('Forums');
143 $gdirpath = 'directory';
145 if (strlen(Config::get('system', 'singleuser'))) {
146 $gdir = Config::get('system', 'directory');
148 $gdirpath = zrl($gdir, true);
152 if (local_user() || Config::get('system', 'community_page_style') != CP_NO_COMMUNITY_PAGE) {
153 $nav['community'] = array('community', t('Community'), '', t('Conversations on this and other servers'));
157 $nav['events'] = array('events', t('Events'), '', t('Events and Calendar'));
160 $nav['directory'] = array($gdirpath, t('Directory'), '', t('People directory'));
162 $nav['about'] = array('friendica', t('Information'), '', t('Information about this friendica instance'));
164 // The following nav links are only show to logged in users
166 $nav['network'] = array('network', t('Network'), '', t('Conversations from your friends'));
167 $nav['net_reset'] = array('network/0?f=&order=comment&nets=all', t('Network Reset'), '', t('Load Network page with no filters'));
169 $nav['home'] = array('profile/' . $a->user['nickname'], t('Home'), '', t('Your posts and conversations'));
171 if (in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_PRVGROUP))) {
172 // only show friend requests for normal pages. Other page types have automatic friendship.
173 if (in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_PRVGROUP))) {
174 $nav['introductions'] = array('notifications/intros', t('Introductions'), '', t('Friend Requests'));
176 if (in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE))) {
177 $nav['notifications'] = array('notifications', t('Notifications'), '', t('Notifications'));
178 $nav['notifications']['all'] = array('notifications/system', t('See all notifications'), '', '');
179 $nav['notifications']['mark'] = array('', t('Mark as seen'), '', t('Mark all system notifications seen'));
183 $nav['messages'] = array('message', t('Messages'), '', t('Private mail'));
184 $nav['messages']['inbox'] = array('message', t('Inbox'), '', t('Inbox'));
185 $nav['messages']['outbox'] = array('message/sent', t('Outbox'), '', t('Outbox'));
186 $nav['messages']['new'] = array('message/new', t('New Message'), '', t('New Message'));
188 if (is_array($a->identities) && count($a->identities) > 1) {
189 $nav['manage'] = array('manage', t('Manage'), '', t('Manage other pages'));
192 $nav['delegations'] = array('delegate', t('Delegations'), '', t('Delegate Page Management'));
194 $nav['settings'] = array('settings', t('Settings'), '', t('Account settings'));
196 if (Feature::isEnabled(local_user(), 'multi_profiles')) {
197 $nav['profiles'] = array('profiles', t('Profiles'), '', t('Manage/Edit Profiles'));
200 $nav['contacts'] = array('contacts', t('Contacts'), '', t('Manage/edit friends and contacts'));
203 // Show the link to the admin configuration page if user is admin
204 if (is_site_admin()) {
205 $nav['admin'] = array('admin/', t('Admin'), '', t('Site setup and configuration'));
208 $nav['navigation'] = array('navigation/', t('Navigation'), '', t('Site map'));
210 // Provide a banner/logo/whatever
211 $banner = Config::get('system', 'banner');
212 if (is_null($banner)) {
213 $banner = '<a href="https://friendi.ca"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="https://friendi.ca">Friendica</a></span>';
216 call_hooks('nav_info', $nav);
219 'sitelocation' => $sitelocation,
222 'userinfo' => $userinfo,
227 * Set a menu item in navbar as selected
230 function nav_set_selected($item){
238 'introductions' => null,
239 'notifications' => null,
248 $a->nav_sel[$item] = 'selected';