forked from giterlizzi/dokuwiki-template-bootstrap3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tpl_navbar.php
executable file
·128 lines (95 loc) · 4.31 KB
/
tpl_navbar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/**
* DokuWiki Bootstrap3 Template: Navbar
*
* @link http://dokuwiki.org/template:bootstrap3
* @author Giuseppe Di Terlizzi <[email protected]>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*/
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
$navbar_classes = array();
$navbar_classes[] = (bootstrap3_conf('fixedTopNavbar') ? 'navbar-fixed-top' : null);
$navbar_classes[] = (bootstrap3_conf('inverseNavbar') ? 'navbar-inverse' : 'navbar-default');
?>
<nav class="navbar <?php echo trim(implode(' ', $navbar_classes)) ?>" role="navigation">
<div class="container<?php echo (bootstrap3_is_fluid_navbar() ? '-fluid' : '') ?>">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<?php
// get logo either out of the template images folder or data/media folder
$logoSize = array();
$logo = tpl_getMediaFile(array(':wiki:logo.png', ':logo.png', 'images/logo.png'), false, $logoSize);
$title = $conf['title'];
$tagline = ($conf['tagline']) ? '<span id="dw__tagline">'.$conf['tagline'].'</span>' : '';
$logo_size = 'height="20"';
if ($tagline) {
$logo_size = 'height="32" style="margin-top:-5px"';
}
// display logo and wiki title in a link to the home page
tpl_link(
wl(),
'<img src="'.$logo.'" alt="'.$title.'" class="pull-left" id="dw__logo" '.$logo_size.' /> <span id="dw__title" '.($tagline ? 'style="margin-top:-5px"': '').'>'. $title . $tagline .'</span>',
'accesskey="h" title="[H]" class="navbar-brand"'
);
?>
</div>
<div class="collapse navbar-collapse">
<?php if (bootstrap3_conf('showHomePageLink')) :?>
<ul class="nav navbar-nav">
<li<?php echo ((wl($ID) == wl()) ? ' class="active"' : ''); ?>>
<?php tpl_link(wl(), '<i class="fa fa-fw fa-home"></i> Home') ?>
</li>
</ul>
<?php endif; ?>
<?php echo bootstrap3_navbar() // Include the navbar for different namespaces ?>
<?php echo bootstrap3_dropdown_page('dropdownpage') ?>
<?php if(file_exists(dirname(__FILE__) . '/navbar.html') && bootstrap3_conf('useLegacyNavbar')): ?>
<ul class="nav navbar-nav">
<?php tpl_includeFile('navbar.html') ?>
</ul>
<?php endif; ?>
<div class="navbar-right">
<?php bootstrap3_searchform() ?>
<?php
// Admin Menu
include_once(dirname(__FILE__).'/tpl_admin.php');
// Tools Menu
include_once(dirname(__FILE__).'/tpl_tools_menu.php');
// Theme Switcher Menu
include_once(dirname(__FILE__).'/tpl_theme_switcher.php');
// Translation Menu
include_once(dirname(__FILE__).'/tpl_translation.php');
?>
<ul class="nav navbar-nav">
<?php if (bootstrap3_conf('fluidContainerBtn')): ?>
<li class="hidden-xs<?php echo (bootstrap3_fluid_container_button() ? ' active' : '')?>">
<a href="#" class="fluid-container" title="<?php echo tpl_getLang('expand_container') ?>"><i class="fa fa-fw fa-arrows-alt"></i><span class="hidden-lg hidden-md hidden-sm"> <?php echo tpl_getLang('expand_container') ?></span></a>
</li>
<?php endif; ?>
<?php if (empty($_SERVER['REMOTE_USER'])): ?>
<li>
<span class="dw__actions dw-action-icon">
<?php
$register_btn = bootstrap3_action_item('register', false, true);
$register_btn = str_replace('action', 'action btn btn-success navbar-btn', $register_btn);
echo $register_btn;
if (! bootstrap3_conf('hideLoginLink')) {
$login_btn = bootstrap3_action_item('login', false, true);
$login_btn = str_replace('action', 'action btn btn-default navbar-btn', $login_btn);
echo $login_btn;
}
?>
</span>
</li>
<?php endif; ?>
</ul>
<?php include_once(dirname(__FILE__).'/tpl_user_menu.php'); ?>
</div>
</div>
</div>
</nav>