一、在程式選擇「佈景」
二、將程式變數送至「佈景」
/*---- 將變數送至樣版----*/ $smarty->assign("WEB", $WEB); /*---- 程式結尾-----*/ $smarty->display('theme.html');
三、新增佈景
四、編輯佈景
說明 | 後台變數、常數 | 前台樣板 |
實體路徑 | WEB_PATH | <{$samrty.const.WEB_PATH}> |
網址 | WEB_URL | <{$samrty.const.WEB_URL}> |
佈景名稱 | $WEB['theme_name'] | <{$WEB.theme_name}> |
程式檔名(含副檔名) | $WEB['file_name'] | <{$WEB.file_name}> |
佈景目錄(含 / ) | <{$themeUrl}> | |
網站標題 | $WEB['title'] | <{$WEB.title}> |
<!-- Bootstrap Core CSS --> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
#定義模板URL $smarty->assign("themeUrl", WEB_URL.'/templates/'.$WEB['theme_name']);//修改不含「/」20161020
五、建立後台
define('WEB_PATH', str_replace("\\","/",dirname(__FILE__)));//前台修改
define('WEB_PATH', str_replace("/admin","",str_replace("\\","/",dirname(__FILE__))));//後台
/*---- 必須引入----*/ #引入樣板引擎 require_once '../smarty.php'; #引入資料庫設定 require_once '../sqlConfig.php'; #引入共用函數 require_once '../function.php';