123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- <?php
- define('EmpireCMSAdmin','1');
- require("../../class/connect.php");
- require("../../class/db_sql.php");
- require("../../class/functions.php");
- require("../../data/dbcache/class.php");
- require '../'.LoadLang('pub/fun.php');
- $link=db_connect();
- $empire=new mysqlquery();
- $editor=1;
- //验证用户
- $lur=is_login();
- $logininid=$lur['userid'];
- $loginin=$lur['username'];
- $loginrnd=$lur['rnd'];
- $loginlevel=$lur['groupid'];
- $loginadminstyleid=$lur['adminstyleid'];
- //ehash
- $ecms_hashur=hReturnEcmsHashStrAll();
- //验证权限
- CheckLevel($logininid,$loginin,$classid,"infotype");
- //处理分类字段变量
- function DoPostInfoTypeVar($add){
- if(empty($add['ttype']))
- {
- $add['ttype']='.html';
- }
- $add['tname']=hRepPostStr($add['tname'],1);
- $add['mid']=(int)$add['mid'];
- $add['myorder']=(int)$add['myorder'];
- $add['yhid']=(int)$add['yhid'];
- $add['tnum']=(int)$add['tnum'];
- $add['listtempid']=(int)$add['listtempid'];
- $add['maxnum']=(int)$add['maxnum'];
- $add['reorder']=RepPostVar2($add['reorder']);
- $add['intro']=eaddslashes(RepPhpAspJspcode($add['intro']));
- $add['pagekey']=eaddslashes(RepPhpAspJspcode($add['pagekey']));
- $add['newline']=(int)$add['newline'];
- $add['hotline']=(int)$add['hotline'];
- $add['goodline']=(int)$add['goodline'];
- $add['hotplline']=(int)$add['hotplline'];
- $add['firstline']=(int)$add['firstline'];
- $add['jstempid']=(int)$add['jstempid'];
- $add['nrejs']=(int)$add['nrejs'];
- $add['listdt']=(int)$add['listdt'];
- $add['repagenum']=(int)$add['repagenum'];
- $add['ttype']=hRepPostStr($add['ttype'],1);
- $add['timg']=hRepPostStr($add['timg'],1);
- //目录
- $add['tpath']=trim($add['tpath']);
- $add['tpath']=$add['pripath'].$add['tpath'];
- $add['tpath']=hRepPostStr($add['tpath'],1);
- return $add;
- }
- //增加分类
- function AddInfoType($add,$userid,$username){
- global $empire,$dbtbpre;
- if(!$add[mid]||!$add[tname]||!$add[listtempid]||!$add[tpath])
- {
- printerror("EmptyInfoTypeName","history.go(-1)");
- }
- $add=DoPostInfoTypeVar($add);
- CheckLevel($userid,$username,$classid,"infotype");
- $createpath=ECMS_PATH.$add[tpath];
- //检测目录是否存在
- if(file_exists($createpath))
- {
- printerror("ReInfoTypePath","");
- }
- CreateInfoTypePath($add[tpath]);//建立目录
- //取得表名
- $ecms_fclast=time();
- $tabler=GetModTable($add[mid]);
- $tabler[tid]=(int)$tabler[tid];
- $sql=$empire->query("insert into {$dbtbpre}enewsinfotype(tname,mid,myorder,yhid,tnum,listtempid,tpath,ttype,maxnum,reorder,tid,tbname,timg,intro,pagekey,newline,hotline,goodline,hotplline,firstline,jstempid,nrejs,listdt,repagenum,fclast) values('$add[tname]','$add[mid]','$add[myorder]','$add[yhid]','$add[tnum]','$add[listtempid]','$add[tpath]','$add[ttype]','$add[maxnum]','$add[reorder]','$tabler[tid]','$tabler[tbname]','$add[timg]','$add[intro]','$add[pagekey]','$add[newline]','$add[hotline]','$add[goodline]','$add[hotplline]','$add[firstline]','$add[jstempid]','$add[nrejs]','$add[listdt]','$add[repagenum]','$ecms_fclast');");
- $typeid=$empire->lastid();
- //生成页面
- if($add[listdt]==0)
- {
- //ListHtml($typeid,$ret_r,5);
- }
- GetClass();//更新缓存
- if($sql)
- {
- //操作日志
- insert_dolog("typeid=".$typeid."<br>tname=".$add[tname]);
- printerror("AddInfoTypeSuccess","InfoType.php".hReturnEcmsHashStrHref2(1));
- }
- else
- {printerror("DbError","history.go(-1)");}
- }
- //修改分类
- function EditInfoType($add,$userid,$username){
- global $empire,$dbtbpre;
- $typeid=(int)$add['typeid'];
- if(!$typeid||!$add[mid]||!$add[tname]||!$add[listtempid]||!$add[tpath])
- {
- printerror("EmptyInfoTypeName","history.go(-1)");
- }
- $add=DoPostInfoTypeVar($add);
- CheckLevel($userid,$username,$classid,"infotype");
- //改变目录
- if($add[oldtpath]<>$add[tpath])
- {
- $createpath=ECMS_PATH.$add[tpath];
- if(file_exists($createpath))
- {
- printerror("ReInfoTypePath","");
- }
- if($add['oldpripath']==$add['pripath'])
- {
- $new=ECMS_PATH;
- @rename($new.$add[oldtpath],$new.$add[tpath]);//改变目录名
- }
- else
- {
- CreateInfoTypePath($add[tpath]);//建立目录
- }
- }
- //取得表名
- $ecms_fclast=time();
- $tabler=GetModTable($add[mid]);
- $tabler[tid]=(int)$tabler[tid];
- //修改
- $sql=$empire->query("update {$dbtbpre}enewsinfotype set tname='$add[tname]',mid='$add[mid]',myorder='$add[myorder]',yhid='$add[yhid]',tnum='$add[tnum]',listtempid='$add[listtempid]',tpath='$add[tpath]',ttype='$add[ttype]',maxnum='$add[maxnum]',reorder='$add[reorder]',tid='$tabler[tid]',tbname='$tabler[tbname]',timg='$add[timg]',intro='$add[intro]',pagekey='$add[pagekey]',newline='$add[newline]',hotline='$add[hotline]',goodline='$add[goodline]',hotplline='$add[hotplline]',firstline='$add[firstline]',jstempid='$add[jstempid]',nrejs='$add[nrejs]',listdt='$add[listdt]',repagenum='$add[repagenum]',fclast='$ecms_fclast' where typeid='$typeid'");
- GetClass();//更新缓存
- //生成页面
- if($add[listdt]==0)
- {
- ListHtml($typeid,$ret_r,5);
- }
- if($sql)
- {
- insert_dolog("typeid=".$typeid."<br>tname=".$add[tname]);//操作日志
- printerror("EditInfoTypeSuccess","InfoType.php?mid=$add[fmid]".hReturnEcmsHashStrHref2(0));
- }
- else
- {
- printerror("DbError","");
- }
- }
- //删除分类
- function DelInfoType($add,$userid,$username){
- global $empire,$dbtbpre;
- $typeid=(int)$add[typeid];
- if(!$typeid)
- {
- printerror("NotDelInfoTypeid","");
- }
- CheckLevel($userid,$username,$classid,"infotype");
- $r=$empire->fetch1("select * from {$dbtbpre}enewsinfotype where typeid='$typeid'");
- if(empty($r[typeid]))
- {
- printerror("NotDelInfoTypeid","history.go(-1)");
- }
- //删除标题分类
- $sql=$empire->query("delete from {$dbtbpre}enewsinfotype where typeid='$typeid'");
- $delpath=ECMS_PATH.$r[tpath];
- $del=DelPath($delpath);
- //moreportdo
- if($r['tpath'])
- {
- $eautodofname='delpath|'.$r['tpath'].'||';
- eAutodo_AddDo('eDelFileTT',0,0,0,0,0,$eautodofname);
- }
- //改变信息分类值
- $usql=$empire->query("update {$dbtbpre}ecms_".$r[tbname]." set ttid=0 where ttid='$typeid'");
- $usql=$empire->query("update {$dbtbpre}ecms_".$r[tbname]."_check set ttid=0 where ttid='$typeid'");
- $usql=$empire->query("update {$dbtbpre}ecms_".$r[tbname]."_doc set ttid=0 where ttid='$typeid'");
- GetClass();//更新缓存
- if($sql)
- {
- insert_dolog("typeid=".$typeid."<br>tname=".$r[tname]);//操作日志
- printerror("DelInfoTypeSuccess","InfoType.php?mid=$add[fmid]".hReturnEcmsHashStrHref2(0));
- }
- else
- {
- printerror("DbError","");
- }
- }
- //修改分类顺序
- function EditInfoTypeOrder($typeid,$myorder,$userid,$username){
- global $empire,$dbtbpre;
- CheckLevel($userid,$username,$classid,"infotype");
- for($i=0;$i<count($typeid);$i++)
- {
- $newmyorder=(int)$myorder[$i];
- $typeid[$i]=(int)$typeid[$i];
- $sql=$empire->query("update {$dbtbpre}enewsinfotype set myorder='$newmyorder' where typeid='$typeid[$i]'");
- }
- //操作日志
- insert_dolog("");
- printerror("EditInfoTypeOrderSuccess",EcmsGetReturnUrl());
- }
- $enews=$_POST['enews'];
- if(empty($enews))
- {$enews=$_GET['enews'];}
- if($enews)
- {
- hCheckEcmsRHash();
- include('../../class/delpath.php');
- include('../../class/copypath.php');
- include('../../class/t_functions.php');
- }
- if($enews=="AddInfoType")//增加分类
- {
- AddInfoType($_POST,$logininid,$loginin);
- }
- elseif($enews=="EditInfoType")//修改分类
- {
- EditInfoType($_POST,$logininid,$loginin);
- }
- elseif($enews=="DelInfoType")//删除分类
- {
- DelInfoType($_GET,$logininid,$loginin);
- }
- elseif($enews=="EditInfoTypeOrder")//修改分类排序
- {
- EditInfoTypeOrder($_POST['typeid'],$_POST['myorder'],$logininid,$loginin);
- }
- $search='';
- $search.=$ecms_hashur['ehref'];
- $page=(int)$_GET['page'];
- $page=RepPIntvar($page);
- $start=0;
- $line=50;//每页显示条数
- $page_line=12;//每页显示链接数
- $offset=$page*$line;//总偏移量
- $query="select typeid,tname,mid,myorder,tpath from {$dbtbpre}enewsinfotype";
- $totalquery="select count(*) as total from {$dbtbpre}enewsinfotype";
- $add='';
- $mid=(int)$_GET['mid'];
- if($mid)
- {
- $add=" where mid='$mid'";
- $search.='&mid='.$mid;
- }
- $query.=$add;
- $totalquery.=$add;
- $num=$empire->gettotal($totalquery);//取得总条数
- $query=$query." order by myorder,typeid limit $offset,$line";
- $sql=$empire->query($query);
- $returnpage=page2($num,$line,$page_line,$start,$page,$search);
- //模型
- $mstr="";
- $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod where usemod=0 order by myorder,mid");
- while($mr=$empire->fetch($msql))
- {
- $select="";
- if($mr[mid]==$mid)
- {
- $select=" selected";
- }
- $mstr.="<option value='".$mr[mid]."'".$select.">".$mr[mname]."</option>";
- }
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>标题分类</title>
- <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
- <script>
- function CheckAll(form)
- {
- for (var i=0;i<form.elements.length;i++)
- {
- var e = form.elements[i];
- if (e.name != 'chkall')
- e.checked = form.chkall.checked;
- }
- }
- </script>
- </head>
- <body>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
- <tr>
- <td width="69%" height="25">位置:<a href="InfoType.php<?=$ecms_hashur['whehref']?>">管理标题分类</a> </td>
- <td width="31%"><div align="right" class="emenubutton">
- <input type="button" name="Submit5" value="增加标题分类" onclick="self.location.href='AddInfoType.php?enews=AddInfoType<?=$ecms_hashur['ehref']?>';">
- </div></td>
- </tr>
- </table>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
- <tr>
- <td>选择所属系统模型:
- <select name="mid" id="mid" onchange="window.location='InfoType.php?<?=$ecms_hashur['ehref']?>&mid='+this.options[this.selectedIndex].value;">
- <option value="0">不限系统模型</option>
- <?=$mstr?>
- </select> </td>
- </tr>
- </table>
- <br>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
- <form name="infotypeform" method="post" action="InfoType.php" onsubmit="return confirm('确认要提交?');">
- <?=$ecms_hashur['form']?>
- <input name="fmid" type="hidden" id="fmid" value="<?=$mid?>">
- <tr class="header">
- <td width="4%"><div align="center">选择 </div></td>
- <td width="6%"><div align="center">ID</div></td>
- <td width="4%"><div align="center">排序</div></td>
- <td width="32%" height="25"><div align="center">分类名称</div></td>
- <td width="21%"><div align="center">所属系统模型</div></td>
- <td width="16%" height="25"><div align="center">操作</div></td>
- <td width="17%">操作</td>
- </tr>
- <?php
- while($r=$empire->fetch($sql))
- {
- $modr=$empire->fetch1("select mid,mname from {$dbtbpre}enewsmod where mid='$r[mid]'");
- $turl=sys_ReturnBqInfoTypeUrl($r['typeid']);
- ?>
- <tr bgcolor="#FFFFFF">
- <td><div align="center">
- <input name="classid[]" type="checkbox" id="classid[]" value="<?=$r[typeid]?>">
- </div></td>
- <td><div align="center">
- <?=$r[typeid]?>
- <input name="typeid[]" type="hidden" id="typeid[]" value="<?=$r[typeid]?>">
- </div></td>
- <td><div align="center">
- <input name="myorder[]" type="text" id="myorder[]" value="<?=$r[myorder]?>" size="6">
- </div></td>
- <td height="25"> <div align="center"><a href="<?=$turl?>" target="_blank">
- <?=$r[tname]?>
- </a></div></td>
- <td><div align="center">[<a href="InfoType.php?mid=<?=$modr[mid]?><?=$ecms_hashur['ehref']?>">
- <?=$modr[mname]?>
- </a>]</div></td>
- <td height="25"><a href="AddInfoType.php?enews=EditInfoType&typeid=<?=$r[typeid]?>&fmid=<?=$mid?><?=$ecms_hashur['ehref']?>">修改</a>
- <a href="AddInfoType.php?enews=AddInfoType&docopy=1&typeid=<?=$r[typeid]?>&fmid=<?=$mid?><?=$ecms_hashur['ehref']?>">复制</a>
- <a href="InfoType.php?enews=DelInfoType&typeid=<?=$r[typeid]?>&fmid=<?=$mid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a></td>
- <td><a href="../ecmschtml.php?enews=ReTtHtml&typeid=<?=$r[typeid]?>&fmid=<?=$mid?><?=$ecms_hashur['href']?>">刷新</a>
- <a href='../ecmschtml.php?enews=ReSingleJs&doing=1&classid=<?=$r[typeid]?><?=$ecms_hashur['href']?>'>JS</a>
- <a href="#ecms" onclick="window.open('../view/TtUrl.php?ttid=<?=$r[typeid]?><?=$ecms_hashur['ehref']?>','','width=500,height=250');">调用</a></td>
- </tr>
- <?
- }
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="25"><div align="center">
- <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
- </div></td>
- <td height="25" colspan="6"> <div align="right">
- <input type="submit" name="Submit" value="刷新页面" onClick="document.infotypeform.enews.value='GoReListHtmlMore';document.infotypeform.action='../ecmschtml.php';">
-
- <input type="submit" name="Submit52" value="修改排序" onClick="document.infotypeform.enews.value='EditInfoTypeOrder';document.infotypeform.action='InfoType.php';">
-
- <input name="enews" type="hidden" id="enews" value="EditInfoTypeOrder">
- <input name="gore" type="hidden" id="gore" value="2">
- <input name="from" type="hidden" id="from" value="info/InfoType.php<?=$ecms_hashur['whehref']?>">
- <font color="#666666">(排序值越小越前面)</font></div></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25" colspan="7">
- <?=$returnpage?>
- </td>
- </tr>
- </form>
- </table>
- </body>
- </html>
- <?php
- db_close();
- $empire=null;
- ?>
|