首页 > CMS建站 > 帝国Empire > 正文

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

2021-12-23 13:23:05
字体:
来源:转载
供稿:网友

找到

=============================

//解析代码

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);

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表