1<?php 2/** 3 * functions for mmZire DokuWiki Template 4 * 5 * License: GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * 7 * @author: Marcin Mierzejewski <marcin@mierzejewski.net> 8 * @homepage: http://www.mierzejewski.net 9 */ 10 11require_once('conf.php'); 12 13/** 14 * Displays the bottombar 15 * 16 * @author: Marcin Mierzejewski <marcin@mierzejewski.net> 17 */ 18function tpl_bottombar() 19{ 20 global $INFO,$ID,$lang; 21 $perm = $INFO['perm']; 22 23 echo '<a href="?do=recent" class="interwiki" title="'.$lang['btn_rec'].'">'.$lang['btn_recent'].'</a>' 24 .' · '; 25 26 if( $perm > AUTH_READ ) 27 { 28 echo '<a href="?do=revisions" class="interwiki" title="'.$lang['btn_revs'].'">'.$lang['btn_revs'].'</a>' 29 .' · '; 30 if(file_exists(wikiFN($ID))) { 31 echo '<a href="?id='.$ID.'&do=edit" class="interwiki" title="'.$lang['btn_edit'].'">'.$lang['btn_edit'].'</a>'; 32 } else { 33 echo '<a href="?id='.$ID.'&do=edit" class="interwiki" title="'.$lang['btn_create'].'">'.$lang['btn_create'].'</a>'; 34 } 35 echo ' · '; 36 } 37 else 38 { 39 echo '<a href="?id='.$ID.'&do=edit" class="interwiki" title="'.$lang['btn_source'].'">'.$lang['btn_source'].'</a>' 40 .' · '; 41 } 42 43 if($perm > AUTH_WRITE) 44 { 45 echo '<a href="?do=admin" class="interwiki" title="'.$lang['btn_admin'].'">'.$lang['btn_admin'].'</a>' 46 .' · '; 47 } 48 49 if(isset($INFO['userinfo']['name'])) 50 { 51 echo '<a href="?do=profile" class="interwiki" title="'.$lang['btn_profile'].'">'.$lang['btn_profile'].'</a>' 52 .' · '; 53 echo '<a href="?do=logout" class="interwiki" title="'.$lang['btn_logout'].'">'.$lang['btn_logout'].'</a>'; 54 } 55 else 56 { 57 echo '<a href="?do=login" class="interwiki" title="'.$lang['btn_login'].'">'.$lang['btn_login'].'</a>'; 58 } 59} 60 61 62/** 63 * Displays the menu1 64 * 65 */ 66function tpl_menu1() 67{ 68 global $conf, $ID, $REV, $INFO; 69 print p_wiki_xhtml("menu1", '', false); 70 71 if ( $INFO['perm'] > AUTH_READ ) 72 { 73 print '<ul><li><a href="?id=menu1&do=edit" class="wikilink1" title="Edit">Edit</a></li></ul>'; 74 } 75} 76 77?> 78