initial commit

This commit is contained in:
Anika Henke 2010-11-05 00:32:03 +00:00
commit f4d2720104
34 changed files with 2229 additions and 0 deletions

25
tpl_functions.php Normal file
View file

@ -0,0 +1,25 @@
<?php
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
if (!defined('DOKU_LF')) define('DOKU_LF',"\n");
/**
* Create link/button to discussion page and back
*/
function _tpl_discussion($discussNS='discussion:',$link=0) {
global $ID;
global $lang;
if(substr($ID,0,strlen($discussNS))==$discussNS) {
$backID = substr(strstr($ID,':'),1);
if ($link)
tpl_pagelink(':'.$backID,$lang['btn_back']);
else
echo html_btn('back',$backID,'',array());
} else {
if ($link)
tpl_pagelink($discussNS.$ID,tpl_getLang('btn_discussion'));
else
echo html_btn('discussion',$discussNS.$ID,'',array());
}
}