forked from giterlizzi/dokuwiki-template-bootstrap3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tpl_theme_switcher.php
executable file
·35 lines (30 loc) · 1.3 KB
/
tpl_theme_switcher.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
<?php
/**
* DokuWiki Bootstrap3 Template: Theme Switcher
*
* @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();
?>
<?php if ( bootstrap3_conf('showThemeSwitcher')
&& bootstrap3_conf('bootstrapTheme') == 'bootswatch'
&& $available_themes = array_diff(bootstrap3_bootswatch_theme_list(), bootstrap3_conf('hideInThemeSwitcher'))): ?>
<!-- theme-switcher -->
<ul class="nav navbar-nav" id="dw__themes">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"><i class="fa fa-fw fa-tint"></i> <span class="hidden-lg hidden-md hidden-sm"><?php echo tpl_getLang('themes') ?></span> <span class="caret"></span></a>
<ul class="dropdown-menu" aria-labelledby="themes">
<li class="dropdown-header"><i class="fa fa-fw fa-tint"></i> Bootswatch Themes</li>
<?php foreach ($available_themes as $theme): ?>
<li<?php echo ($bootswatchTheme == $theme) ? ' class="active"' : '' ?>>
<a href="?bootswatchTheme=<?php echo $theme ?>"><?php echo ucfirst($theme) ?></a>
</li>
<?php endforeach; ?>
</ul>
</li>
</ul>
<!-- /theme-switcher -->
<?php endif; ?>