アットウィキロゴ

smarty.inc

<?php
define( 'SMARTY_DIR', '/home/be-bee/smarty/' );
require_once( SMARTY_DIR .'Smarty.class.php' );

// Smartyオブジェクト取得
function & getSmartyObj()
{
    static $smarty = null;

    if( is_null( $smarty ) ){
        $smarty = new Smarty();
        $smarty->template_dir = '/home/be-bee/www/worker/smarty/templates/';
        $smarty->compile_dir  = '/home/be-bee/www/worker/smarty/templates_c/';
        $smarty->config_dir   = '/home/be-bee/www/worker/smarty/configs/';
        $smarty->cache_dir    = '/home/be-bee/www/worker/smarty/cache/';
    }

    return $smarty;
}
?>

タグ:

+ タグ編集
  • タグ:
最終更新:2008年11月05日 20:32