예제 #1
0
<?php

incSmarty();
incUtil();
require_once "SmartyStore.php";
require_once "Preferences.php";
require_once "Defaults.php";
require_once "TextMessage.php";
$smarty = new SmartyStore('users');
$preferences = new Preferences();
/*i18n*/
$txtm = new TextMessage();
$styleSheet = $preferences->styleSheet();
$styleSheetPath = "css/" . $styleSheet;
$smarty->assign("stylesheet", $styleSheetPath);
$smarty->display('indexauth.tpl');
예제 #2
0
<?php

incSmarty();
require_once "SmartyStore.php";
require_once "Preferences.php";
require_once "TextMessage.php";
require_once "Currency.php";
$smarty = new SmartyStore('users');
$prefs = new Preferences();
$styleSheet = $prefs->styleSheet();
$styleSheetPath = "css/" . $styleSheet;
$smarty->assign("stylesheet", $styleSheetPath);
/*i18n*/
$txtm = new TextMessage();
$crcy = new Currency();
$smarty->assign("crcy", $crcy);
$smarty->display('logout.tpl');