
Since the config-option for hide-tools no longer exists, this variable has become superflous.
23 lines
402 B
PHP
Executable file
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>
|