-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing "tpl_admin.php" (see commit 31c0c74 for details). Sorry!
- Loading branch information
1 parent
630c663
commit 7334f07
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?php | ||
/** | ||
* DokuWiki Bootstrap3 Template: Administration Menu | ||
* | ||
* @link http://dokuwiki.org/template:bootstrap3 | ||
* @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com> | ||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html) | ||
*/ | ||
|
||
global $ID, $auth; | ||
|
||
$admin_plugins = plugin_list('admin'); | ||
$administrative_tasks = array('usermanager', 'acl', 'extension', 'config', 'styling', 'revert', 'popularity'); | ||
$additional_plugins = array_diff($admin_plugins, $administrative_tasks); | ||
|
||
$plugins = array( | ||
'Administrative Tasks' => $administrative_tasks, | ||
'Additional Plugins' => $additional_plugins | ||
); | ||
?> | ||
<?php if($showAdminMenu): ?> | ||
<ul class="nav navbar-nav"> | ||
<li class="dropdown"> | ||
|
||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" title="Administration"> | ||
<i class="fa fa-cogs"></i> <span class="hidden-lg hidden-md hidden-sm">Administration</span> <span class="caret"></span> | ||
</a> | ||
|
||
<ul class="dropdown-menu" role="menu"> | ||
|
||
<li class="open dropdown-row"> | ||
<?php foreach ($plugins as $name => $items): ?> | ||
<ul class="col-sm-6 dropdown-menu"> | ||
|
||
<li class="dropdown-header"> | ||
<i class="fa fa-cog"></i> <?php echo ucfirst($name) ?> | ||
</li> | ||
|
||
<?php | ||
foreach($items as $item) { | ||
|
||
if(($plugin = plugin_load('admin', $item)) === null) continue; | ||
if($plugin->forAdminOnly() && !$INFO['isadmin']) continue; | ||
if($item == 'usermanager' && ! ($auth && $auth->canDo('getUsers'))) continue; | ||
|
||
$label = $plugin->getMenuText($conf['lang']); | ||
|
||
if (! $label) continue; | ||
|
||
switch ($item) { | ||
case 'usermanager': $icon = 'users'; break; | ||
case 'acl': $icon = 'key'; break; | ||
case 'extension': $icon = 'plus'; break; | ||
case 'config': $icon = 'cogs'; break; | ||
case 'styling': $icon = 'paint-brush'; break; | ||
case 'revert': $icon = 'refresh'; break; | ||
case 'popularity': $icon = 'envelope'; break; | ||
|
||
case 'sqlite': $icon = 'database'; break; | ||
case 'tagging': $icon = 'tags'; break; | ||
case 'upgrade': $icon = 'cloud-download'; break; | ||
case 'smtp': $icon = 'envelope-o'; break; | ||
case 'searchindex': $icon = 'sitemap'; break; | ||
case 'discussion': $icon = 'comments'; break; | ||
default: $icon = 'puzzle-piece'; | ||
} | ||
|
||
echo sprintf('<li><a href="%s" title="%s"><i class="fa fa-%s"></i> %s</a></li>', wl($ID, array('do' => 'admin','page' => $item)), $label, $icon, $label); | ||
|
||
} | ||
?> | ||
</ul> | ||
<?php endforeach; ?> | ||
|
||
</li> | ||
</ul> | ||
|
||
</li> | ||
</ul> | ||
<?php endif; ?> |