风卷残云
中级会员
 
老会员
UID 63269
精华
0
积分 367
帖子 381
金钱 367 喜悦币
威望 0
人脉 0
阅读权限 30
注册 2005-2-19 来自 江苏
状态 离线
|
[推荐阅读] 论坛输入框那些特殊功能是怎样做出来的?
我一直用的!
<?php /* * Copyright (c) 2004,闲情网站 * All rights reserved * * 系统名称:闲情网站 * 文件名称:Smarty_Freeday.php * 文件标识:见配置管理计划书 * 功 能:Smarty统一配置类,当用到此文件是,包含进去即可,$smarty = new Smarty_Freeday; * 摘 要: */
require ("./Smarty/Smarty.class.php");
/**======================================= * 类名: Smarty_Freeday * 功能: Smarty统一配置方法 *=======================================*/ class Smarty_Freeday extends Smarty { function Smarty_Freeday() //类构造函数.创建实例的时候自动配置 { $this->Smarty(); $this->template_dir = './templates/'; //模板位置 $this->compile_dir = './templates_c/'; $this->config_dir = './configs/'; $this->cache_dir = './cache/'; $this->left_delimiter = '<{'; $this->right_delimiter = '}>'; $this->caching = false; //不用缓存 $this->assign('app_name','Smarty_Freeday'); }
} ?>
|
|