123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <?php
- define('EmpireCMSAdmin','1');
- require("../../class/connect.php");
- require("../../class/db_sql.php");
- require("../../class/functions.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,"notcj");
- //增加采集随机字符
- function AddNotcj($add,$userid,$username){
- global $empire,$dbtbpre;
- //验证权限
- CheckLevel($userid,$username,$classid,"notcj");
- if(empty($add[word]))
- {
- printerror("EmptyNotcjWord","history.go(-1)");
- }
- $word=RepPhpAspJspcode($add[word]);
- $sql=$empire->query("insert into {$dbtbpre}enewsnotcj(word) values('".eaddslashes($word)."');");
- $id=$empire->lastid();
- GetNotcj();
- if($sql)
- {
- //操作日志
- insert_dolog("id=$id");
- printerror("AddNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1));
- }
- else
- {
- printerror("DbError","history.go(-1)");
- }
- }
- //修改采集随机字符
- function EditNotcj($add,$userid,$username){
- global $empire,$dbtbpre;
- //验证权限
- CheckLevel($userid,$username,$classid,"notcj");
- $id=(int)$add['id'];
- if(empty($add[word])||!$id)
- {
- printerror("EmptyNotcjWord","history.go(-1)");
- }
- $word=RepPhpAspJspcode($add[word]);
- $sql=$empire->query("update {$dbtbpre}enewsnotcj set word='".eaddslashes($word)."' where id='$id'");
- GetNotcj();
- if($sql)
- {
- //操作日志
- insert_dolog("id=$id");
- printerror("EditNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1));
- }
- else
- {
- printerror("DbError","history.go(-1)");
- }
- }
- //删除采集随机字符
- function DelNotcj($id,$userid,$username){
- global $empire,$dbtbpre;
- //验证权限
- CheckLevel($userid,$username,$classid,"notcj");
- $id=(int)$id;
- if(!$id)
- {
- printerror("EmptyDelNotcjid","history.go(-1)");
- }
- $sql=$empire->query("delete from {$dbtbpre}enewsnotcj where id='$id'");
- GetNotcj();
- if($sql)
- {
- //操作日志
- insert_dolog("id=$id");
- printerror("DelNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1));
- }
- else
- {
- printerror("DbError","history.go(-1)");
- }
- }
- //生成随机字符缓存
- function GetNotcj(){
- global $empire,$dbtbpre;
- $file=ECMS_PATH."e/data/dbcache/notcj.php";
- $sql=$empire->query("select id,word from {$dbtbpre}enewsnotcj");
- $i=0;
- while($r=$empire->fetch($sql))
- {
- $i++;
- $str.="\$notcj_r[$i]='".addslashes($r[word])."';
- ";
- }
- $string="<?php
- \$notcj_r=array();
- ".$str."\$notcjnum=".$i.";
- ?>";
- WriteFiletext_n($file,$string);
- }
- $enews=$_POST['enews'];
- if(empty($enews))
- {$enews=$_GET['enews'];}
- if($enews)
- {
- hCheckEcmsRHash();
- }
- //增加随机字符
- if($enews=="AddNotcj")
- {
- AddNotcj($_POST,$logininid,$loginin);
- }
- //修改随机字符
- elseif($enews=="EditNotcj")
- {
- EditNotcj($_POST,$logininid,$loginin);
- }
- //删除随机字符
- elseif($enews=="DelNotcj")
- {
- $id=$_GET['id'];
- DelNotcj($id,$logininid,$loginin);
- }
- else
- {}
- $search=$ecms_hashur['ehref'];
- $start=0;
- $page=(int)$_GET['page'];
- $page=RepPIntvar($page);
- $line=15;//每行显示
- $page_line=15;
- $offset=$page*$line;
- $totalquery="select count(*) as total from {$dbtbpre}enewsnotcj";
- $num=$empire->gettotal($totalquery);//取得总条数
- $query="select id,word from {$dbtbpre}enewsnotcj";
- $query.=" order by id desc limit $offset,$line";
- $sql=$empire->query($query);
- $returnpage=page2($num,$line,$page_line,$start,$page,$search);
- ?>
- <!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">
- </head>
- <body>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
- <tr>
- <td>位置:防采集管理 > <a href="NotCj.php<?=$ecms_hashur['whehref']?>">管理防采集随机字符</a></td>
- </tr>
- </table>
- <form name="form1" method="post" action="NotCj.php">
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
- <?=$ecms_hashur['form']?>
- <tr class="header">
- <td height="25">增加防采集随机字符:
- <input type=hidden name=enews value=AddNotcj>
- </td>
- </tr>
- <tr>
- <td height="25" bgcolor="#FFFFFF">
- <textarea name="word" cols="65" rows="8" id="word"></textarea>
- </td>
- </tr>
- <tr>
- <td height="25" bgcolor="#FFFFFF"><input type="submit" name="Submit" value="增加">
- <input type="reset" name="Submit2" value="重置"></td>
- </tr>
- </table>
- </form>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
- <tr class="header">
- <td width="7%"><div align="center">ID</div></td>
- <td width="75%" height="25">防采集随机字符</td>
- <td width="18%" height="25"><div align="center">操作</div></td>
- </tr>
- <?
- while($r=$empire->fetch($sql))
- {
- $word=ehtmlspecialchars($r[word]);
- ?>
- <form name=form2 method=post action=NotCj.php>
- <?=$ecms_hashur['form']?>
- <input type=hidden name=enews value=EditNotcj>
- <input type=hidden name=id value=<?=$r[id]?>>
- <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
- <td><div align="center"><?=$r[id]?></div></td>
- <td height="25"><textarea name="word" cols="65" rows="8" id="word"><?=$word?></textarea>
- </td>
- <td height="25"><div align="center">
- <input type="submit" name="Submit3" value="修改">
-
- <input type="button" name="Submit4" value="删除" onclick="self.location.href='NotCj.php?enews=DelNotcj&id=<?=$r[id]?><?=$ecms_hashur['href']?>';">
- </div></td>
- </tr>
- </form>
- <?
- }
- db_close();
- $empire=null;
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="25" colspan="3"> <?=$returnpage?></td>
- </tr>
- </table>
- </body>
- </html>
|