/** * @CopyRight (C)2006-2011 OE Development team Inc. * @WebSite www.phpcoo.com,www.oecms.cn * @Author XiangFeng * @Brief OEcms v3.x * @Update 2011.09.23 * @Id 首页 **/ define('ALLOWGUEST',true); require_once './source/core/run.php'; $tplfile = INDEX_TEMPLATE."index.".$tplext; $widgetfile = "./source/widget/index.php"; if(!Core_Fun::fileexists($tplfile)){ Core_Fun::halt("对不起,模板文件“".$tplfile."”不存在,请检查!","",1); } if(!Core_Fun::fileexists($widgetfile)){ Core_Fun::halt("对不起,部件文件“".$widgetfile."”不存在,请检查!","",1); } /* 缓存,模板处理 */ if($config['cachstatus']==1){ $cache_seconds = $config['cachtime']*60; $tpl->setCaching(true); $tpl->setCacheLifetime($cache_seconds); } $cacheid = md5($_SERVER["REQUEST_URI"]); if(!$tpl->isCached($tplfile,$cacheid)){ require_once './source/module/app.php'; require_once './source/widget/index.php'; } $tpl->assign("runtime",Core_Fun::runtime()); $tpl->display($tplfile,$cacheid); ?>