Initial version, with no update possibility
This commit is contained in:
11
smarty_init.php
Normal file
11
smarty_init.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
include $smartyInstallDir . DIRECTORY_SEPARATOR . 'libs' . DIRECTORY_SEPARATOR . 'Smarty.class.php';
|
||||
|
||||
$tpl = new Smarty();
|
||||
$tpl->template_dir = $smartyTemplateDir;
|
||||
$tpl->compile_dir = $smartyCache;
|
||||
|
||||
if (array_key_exists('loginuser', $_SESSION))
|
||||
{
|
||||
$tpl->assign('username', $_SESSION['loginuser']);
|
||||
}
|
Reference in New Issue
Block a user