帝国cms的框架 帝国CMS安装有移动端同步生成插件的同步删除手机文件方法

帝国CMS教程

在安装有帝国cms移动端同步插件在后台删除信息后手机端其实并没有同步删除,现在我们通过修改系统默认文件来实现这个功能。

在没修改前需要手工去手机端目录去删除文件,现在终于有方法解决了这个问题,代码如下:

找到文件件e/class/functions.php,查找"function DelNewsFile",找到函数DelNewsFile,把开头和结尾中间部分替换成以下代码:

functionDelNewsFile($filename,$newspath,$classid,$newstext,$groupid=0){

global$class_r,$addgethtmlpath,$mob_r;

include_onceECMS_PATH."e/dongpo/mob/config.php";//文件类型

if($groupid)

{

$filetype=".php";

}

else

{

$filetype=$class_r[$classid][filetype];

}

//是否有日期目录

if(empty($newspath))

{

$mynewspath="";

}

else

{

$mynewspath=$newspath."/";

}

$iclasspath=ReturnSaveInfoPath($classid,$id);

$r=explode("

标签: 帝国cms的框架