*/ /** * Prints the navigation * * @author Michael Klier */ function tpl_navigation() { global $ID; global $conf; $navpage = tpl_getConf('navigation_page'); list($ns, $chunk) = explode(':', $ID, 2); $navpage = (page_exists($ns.':'.$navpage)) ? $ns.':'.$navpage : $navpage; print ''; } /** * Prints the actions links * * @author Michael Klier */ function tpl_actions() { $actions = array('admin', 'revert', 'edit', 'history', 'recent', 'backlink', 'subscription', 'index', 'login', 'profile'); print '' . DOKU_LF; } // vim:ts=4:sw=4:et:enc=utf-8: