dokuwiki-template-sprintdoc.../tpl/nav-page-tools.php
2017-04-13 15:11:45 +02:00

24 lines
488 B
PHP
Executable file

<?php
if (!defined('DOKU_INC')) die();
?>
<?php if ($showTools): ?>
<nav id="dokuwiki__pagetools">
<div class="tools">
<?php include('nav-status.php');?>
<ul>
<?php
$data = dokuwiki\template\sprintdoc\tpl::assemblePageTools();
foreach ($data['items'] as $k => $html) {
echo $html;
}
?>
</ul>
</div>
</nav>
<?php endif; ?>