首先引入include目录下的common.inc.php文件,二次开发基本上都要引入这个文件
一、加载模板的第一种方法
require_once(DEDEINC."/arc.partview.class.php");
$arc = new PartView();
$arc->SetTemplet(DEDETEMPLATE."/plus/yuyue.htm");
$arc->Display();
$arc = new PartView();
$arc->SetTemplet(DEDETEMPLATE."/plus/yuyue.htm");
$arc->Display();
二、加载模板的第二种方法
require_once(DEDEINC."/dedetemplate.class.php");
$tpl = new DedeTemplate();
$tpl->LoadTemplate(DEDETEMPLATE."/plus/yuyue.htm");
$tpl->Display();
$tpl = new DedeTemplate();
$tpl->LoadTemplate(DEDETEMPLATE."/plus/yuyue.htm");
$tpl->Display();