Smarty擴充套件設定


擴充套件設定

這是基本安裝的繼續,請先閱讀那個檔案!

一個更靈活一點的組態Smarty的方法是擴充套件類,和初始化你的smarty環境。
為了避免重複地組態路徑,我們可以在一個檔案裡組態這些變數。
我們建立一個目錄 "/php/includes/guestbook/" 建立一個檔案"setup.php"
同樣先設定好smarty路徑。

例2-10.編輯 /php/includes/guestbook/setup.php

// load Smarty library
require('Smarty.class.php');

// The setup.php file is a good place to load
// required application library files, and you
// can do that right here. An example:
// require('guestbook/guestbook.lib.php');是一個很好的載入應用程式的類庫檔案(就是擴充套件類)
//例如你可以在index檔案裡包含它

class Smarty_GuestBook extends Smarty {

 function Smarty_GuestBook() {
 
 		// Class Constructor. These automatically get set with each new instance.
 //類建構函式.建立範例的時候自動組態

		$this->Smarty();

		$this->template_dir = '/web/www.mydomain.com/smarty/guestbook/templates/';
		$this->compile_dir = '/web/www.mydomain.com/smarty/guestbook/templates_c/';
		$this->config_dir = '/web/www.mydomain.com/smarty/guestbook/configs/';
		$this->cache_dir = '/web/www.mydomain.com/smarty/guestbook/cache/'; 
		
		$this->caching = true;
		$this->assign('app_name','Guest Book');
 }

}


現在我們針對setup檔案更改一下index檔案

Smarty手冊範例 2-11.編輯/web/www.mydomain.com/docs/guestbook/index.php

require('guestbook/setup.php');

$smarty = new Smarty_GuestBook;

$smarty->assign('name','Ned');

$smarty->display('index.tpl');

現在你看到建立一個使用smarty的範例有多麼的簡單.從Smarty_GuestBook開始,重新構建我們的應用程式吧^_^