优晟SEO

您现在的位置是:首页 > CMS教程 > 帝国cms > 正文

帝国cms

帝国cms让控制面板模板头尾也支持标签调用的教程方法

帝国   面板   模板  
佚名 2024-08-20帝国cms
修改/e/class/functions.php文件,找到//解析代码function RepExeCode($string)在这之前添加//标签替换4function CustomNewsBq($name,$indextext){        global $empire,$dbtbpre,$public_r,$emod_r,$class_r,$class……

帝国cms让控制面板模板头尾也支持标签调用的教程方法

修改/e/class/functions.php文件,找到

//解析代码function RepExeCode($string)

在这之前添加

//标签替换4function CustomNewsBq($name,$indextext){        global $empire,$dbtbpre,$public_r,$emod_r,$class_r,$class_zr,$fun_r,$navclassid,$navinfor,$class_tr,$level_r,$etable_r;        $file=ECMS_PATH.'e/data/tmp/dt_temp'.$name.'.php';        $indextext=stripSlashes($indextext);        $indextext=ReplaceTempvar($indextext);//替换全局模板变量        //替换标签        $indextext=DoRepEcmsLoopBq($indextext);        $indextext=RepBq($indextext);        //写文件        WriteFiletext($file,AddCheckViewTempCode().$indextext);        //读取文件内容       ob_start();        include($file);        $string=ob_get_contents();        ob_end_clean();        $string=RepExeCode($string);//解析代码        return $string;}

找到

WriteFiletext($file1,AddCheckViewTempCode().$r[0]);

改为

$tmplist= CustomNewsBq ("cp0",$r[0]);WriteFiletext($file1,$tmplist);

找到

WriteFiletext($file2,AddCheckViewTempCode().$r[1]);

改为

$tmplist= CustomNewsBq ("cp1",$r[1]);WriteFiletext($file2,$tmplist);