123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?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();
- $enews=$_POST['enews'];
- if(empty($enews))
- {$enews=$_GET['enews'];}
- if($enews)
- {
- hCheckEcmsRHash();
- include('../../class/chtmlfun.php');
- include('../../data/dbcache/class.php');
- include('../../class/t_functions.php');
- }
- if($enews=='ReSp')//刷新碎片文件
- {
- ReSp($_GET,$logininid,$loginin,1);
- }
- $page=(int)$_GET['page'];
- $page=RepPIntvar($page);
- $start=0;
- $line=30;//每页显示条数
- $page_line=12;//每页显示链接数
- $offset=$page*$line;//总偏移量
- $add='';
- $search='';
- $search.=$ecms_hashur['ehref'];
- //碎片类型
- $sptype=(int)$_GET['sptype'];
- if($sptype)
- {
- $add.=" and sptype='$sptype'";
- $search.="&sptype=$sptype";
- }
- //分类
- $cid=(int)$_GET['cid'];
- if($cid)
- {
- $add.=" and cid='$cid'";
- $search.="&cid=$cid";
- }
- //栏目
- $classid=(int)$_GET['classid'];
- if($classid)
- {
- $add.=" and classid='$classid'";
- $search.="&classid=$classid";
- }
- $query="select spid,spname,varname,cid,classid,sptype,sppic,spsay,refile,spfile from {$dbtbpre}enewssp where isclose=0 and (groupid like '%,".$lur[groupid].",%' or userclass like '%,".$lur[classid].",%' or username like '%,".$lur[username].",%')".$add;
- $totalquery="select count(*) as total from {$dbtbpre}enewssp where isclose=0 and (groupid like '%,".$lur[groupid].",%' or userclass like '%,".$lur[classid].",%' or username like '%,".$lur[username].",%')".$add;
- $num=$empire->gettotal($totalquery);//取得总条数
- $query=$query." order by spid desc limit $offset,$line";
- $sql=$empire->query($query);
- $returnpage=page2($num,$line,$page_line,$start,$page,$search);
- $url="<a href=UpdateSp.php".$ecms_hashur['whehref'].">更新碎片</a>";
- //分类
- $scstr="";
- $scsql=$empire->query("select classid,classname from {$dbtbpre}enewsspclass order by classid");
- while($scr=$empire->fetch($scsql))
- {
- $select="";
- if($scr[classid]==$cid)
- {
- $select=" selected";
- }
- $scstr.="<option value='".$scr[classid]."'".$select.">".$scr[classname]."</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">
- </head>
- <body>
- <table width="100%" border="0" cellspacing="1" cellpadding="3">
- <tr>
- <td>位置:
- <?=$url?>
- <div align="right"> </div></td>
- </tr>
- </table>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
- <form name="searchform" method="GET" action="UpdateSp.php">
- <?=$ecms_hashur['eform']?>
- <tr>
- <td>
- <select name="cid">
- <option value="0">所有分类</option>
- <?=$scstr?>
- </select>
- <select name="sptype" id="所有类型">
- <option value="0">所有类型</option>
- <option value="1"<?=$sptype==1?' selected':''?>>静态信息碎片</option>
- <option value="2"<?=$sptype==2?' selected':''?>>动态信息碎片</option>
- <option value="3"<?=$sptype==3?' selected':''?>>代码碎片</option>
- </select>
- <span id="listplclassnav"></span>
- <input type="submit" name="Submit" value="显示"></td>
- </tr>
- </form>
- </table>
- <br>
- <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
- <tr class="header">
- <td width="21%" height="25"> <div align="center">碎片名称</div></td>
- <td width="19%"><div align="center">变量名</div></td>
- <td width="40%"> <div align="center">描述</div></td>
- <td width="20%" height="25"><div align="center">操作</div></td>
- </tr>
- <?
- while($r=$empire->fetch($sql))
- {
- if($r[sptype]==1)
- {
- $sptype='静态信息';
- $dourl="ListSpInfo.php?spid=$r[spid]".$ecms_hashur['ehref'];
- }
- elseif($r[sptype]==2)
- {
- $sptype='动态信息';
- $dourl="ListSpInfo.php?spid=$r[spid]".$ecms_hashur['ehref'];
- }
- else
- {
- $sptype='代码碎片';
- $dourl="AddSpInfo.php?enews=EditSpInfo&spid=$r[spid]".$ecms_hashur['ehref'];
- }
- //链接
- $sphref='';
- if($r['refile'])
- {
- $sphref=' href="'.$public_r['newsurl'].$r['spfile'].'" target="_blank"';
- }
- $sppic='';
- if($r[sppic])
- {
- $sppic='<a href="'.$r[sppic].'" title="碎片效果图" target="_blank"><img src="../../data/images/showimg.gif" border=0 align="absmiddle"></a>';
- }
- ?>
- <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
- <td height="32"><a<?=$sphref?> title="<?=$sptype?>">
- <?=$r[spname]?>
- </a> <?=$sppic?></td>
- <td><div align="center">
- <?=$r[varname]?>
- </div></td>
- <td>
- <?=$r[spsay]?>
- </td>
- <td height="25"><div align="center">[<a href="<?=$dourl?>" target="_blank">更新碎片</a>]
- <?php
- if($r['refile'])
- {
- ?>
- [<a href="UpdateSp.php?enews=ReSp&spid[]=<?=$r[spid]?><?=$ecms_hashur['href']?>">刷新碎片文件</a>]
- <?php
- }
- ?>
- </div></td>
- </tr>
- <?
- }
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="25" colspan="4">
- <?=$returnpage?>
- </td>
- </tr>
- </table>
- <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="../ShowClassNav.php?ecms=6&classid=<?=$classid?><?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
- </body>
- </html>
- <?
- db_close();
- $empire=null;
- ?>
|