dokuwiki-template-sprintdoc.../tpl/nav-page-tools.php
Michael Große 270380eb00
Remove $showTools, because it is set to true
Since the config-option for hide-tools no longer exists, this variable
has become superflous.
2017-04-18 13:48:52 +02:00

23 lines
402 B
PHP
Executable file

<?php
if (!defined('DOKU_INC')) {
die();
}
?>
<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>