1<footer id="dokuwiki__footer"> 2 <div class="meta"> 3 4 <?php if (tpl_getConf('ShowUserFooter')){ 5 echo '<div class="user">'; 6 tpl_userinfo(); 7 echo '</div>'; 8 } 9 ?> 10 11 <?php if (tpl_getConf('ShowACLFooter') && ($INFO['editable'])){ 12 echo '<div class="acl">'; 13 Kiwiki_Functions::tpl_aclinfo(); 14 echo '</div>'; 15 } 16 ?> 17 18 <div class="doc"><?php tpl_pageinfo() ?></div> 19 </div> 20 <?php tpl_license('button') ?> 21 <?php tpl_includeFile('footer.html') ?> 22</footer> 23