2010年9月25日
Kohana3にSmarty moduleをインストール
ダウンロード
http://wiki.github.com/MrAnchovy/kohana-module-smarty/
インストール
githubでも手順がとても分かりやすいので直接引用させていただきます。
- Download the latest version from the links above
- Unpack the downloaded file
- Move the smarty directory into the Kohana modules directory
- Enable the module in your application's bootstrap.php
Kohana::modules(array(
'auth' => MODPATH.'auth', // Basic authentication
// 'cache' => MODPATH.'cache', // Caching with multiple backends
// 'codebench' => MODPATH.'codebench', // Benchmarking tool
'database' => MODPATH.'database', // Database access
// 'image' => MODPATH.'image', // Image manipulation
'orm' => MODPATH.'orm', // Object Relationship Mapping
'pagination' => MODPATH.'pagination', // Paging of results
'userguide' => MODPATH.'userguide', // User guide and API documentation
'smarty' => MODPATH.'smarty', // smarty template module.
));
- Visit the page www.yoursite.com/smarty to confirm all is OK
その他リンク
このモジュールのファイル構造: http://github.com/MrAnchovy/kohana-module-smarty/wiki/file-structure