dokuwiki

dokuwiki: how can I hide media manager link from non logged in users


In dokuwiki how can I hide "media manager" link or any other link on the top, from non logged in users?


Solution

  • one way is changing the template like this: in /lib/tpl/dokuwiki/tpl_header.php:

                <?php
                    if ($INFO['isadmin']) {
                        tpl_action('recent', 1, 'li'); //recent changes
                        tpl_action('media', 1, 'li'); //media manager
                        tpl_action('index', 1, 'li'); //sitemap
                    }
                ?>