Lines Matching refs:tpl
36 $tpl = io_readFile($path.'/_template.txt');
42 $tpl = io_readFile($path.'/__template.txt');
56 $tpl = io_readFile($my_new_file);
61 if(!$tpl) return '';
64 $tpl = str_replace('@ID@',$ID,$tpl);
65 $tpl = str_replace('@NS@',getNS($id),$tpl);
66 $tpl = str_replace('@PAGE@',strtr(noNS($ID),'_',' '),$tpl);
67 $tpl = str_replace('@USER@',$_SERVER['REMOTE_USER'],$tpl);
68 $tpl = str_replace('@NAME@',$INFO['userinfo']['name'],$tpl);
69 $tpl = str_replace('@MAIL@',$INFO['userinfo']['mail'],$tpl);
70 $tpl = str_replace('@DATE@',$conf['dformat'],$tpl);
72 $tpl = preg_replace_callback('/%./',create_function('$m','return strftime($m[0]);'),$tpl);
74 $event->result=$tpl;