plface.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"pl");
  20. //验证文件
  21. function CheckPlfaceFilename($filename){
  22. if(strstr($filename,"\\")||strstr($filename,"/")||strstr($filename,".."))
  23. {
  24. printerror("FileNotExist","history.go(-1)");
  25. }
  26. //文件是否存在
  27. if(!file_exists("../../data/face/".$filename))
  28. {
  29. printerror("FileNotExist","history.go(-1)");
  30. }
  31. }
  32. //过滤字符
  33. function DoRepPlface($str){
  34. $str=str_replace('##','',$str);
  35. $str=str_replace('||','',$str);
  36. return $str;
  37. }
  38. //------------------增加表情
  39. function AddPlface($add,$userid,$username){
  40. global $empire,$dbtbpre;
  41. if(!$add[facefile]||!$add[faceword])
  42. {
  43. printerror("EmptyPlface","history.go(-1)");
  44. }
  45. $facefile=DoRepPlface($add[facefile]);
  46. $faceword=DoRepPlface($add[faceword]);
  47. CheckPlfaceFilename($add[facefile]);
  48. $r=$empire->fetch1("select plface from {$dbtbpre}enewspl_set limit 1");
  49. if(strstr($r[plface],'||'.$faceword.'##'))
  50. {
  51. printerror("HavePlface","history.go(-1)");
  52. }
  53. if(empty($r[plface]))
  54. {
  55. $r[plface]='||';
  56. }
  57. $newplface=$r[plface].$faceword."##".$facefile."||";
  58. $newplface=hRepPostStr($newplface,1);
  59. $sql=$empire->query("update {$dbtbpre}enewspl_set set plface='$newplface' limit 1");
  60. if($sql)
  61. {
  62. GetPlfaceJs();
  63. GetConfig();//更新缓存
  64. //操作日志
  65. insert_dolog("$faceword");
  66. printerror("AddPlfaceSuccess","plface.php".hReturnEcmsHashStrHref2(1));
  67. }
  68. else
  69. {printerror("DbError","history.go(-1)");}
  70. }
  71. //----------------修改表情
  72. function EditPlface($add,$userid,$username){
  73. global $empire,$dbtbpre;
  74. $facefile=$add[facefile];
  75. $faceword=$add[faceword];
  76. $count=count($faceword);
  77. $plface='||';
  78. for($i=0;$i<$count;$i++)
  79. {
  80. $facefile[$i]=DoRepPlface($facefile[$i]);
  81. $faceword[$i]=DoRepPlface($faceword[$i]);
  82. if($faceword[$i])
  83. {
  84. $plface.=$faceword[$i]."##".$facefile[$i]."||";
  85. }
  86. }
  87. $plface=hRepPostStr($plface,1);
  88. $sql=$empire->query("update {$dbtbpre}enewspl_set set plface='$plface' limit 1");
  89. if($sql)
  90. {
  91. GetPlfaceJs();
  92. GetConfig();//更新缓存
  93. //操作日志
  94. insert_dolog("");
  95. printerror("EditPlfaceSuccess","plface.php".hReturnEcmsHashStrHref2(1));
  96. }
  97. else
  98. {printerror("DbError","history.go(-1)");}
  99. }
  100. //----------------生成表情JS
  101. function GetPlfaceJs(){
  102. global $empire,$dbtbpre,$public_r;
  103. $r=$empire->fetch1("select plface,plfacenum from {$dbtbpre}enewspl_set limit 1");
  104. if(empty($r['plfacenum']))
  105. {
  106. return '';
  107. }
  108. $filename="../../../d/js/js/plface.js";
  109. $facer=explode('||',$r['plface']);
  110. $count=count($facer);
  111. for($i=1;$i<$count-1;$i++)
  112. {
  113. if($i%$r['plfacenum']==0)
  114. {
  115. $br="<br>";
  116. }
  117. else
  118. {
  119. $br="&nbsp;";
  120. }
  121. $face=explode('##',$facer[$i]);
  122. $allface.="<a href='#eface' onclick=\\\"eaddplface('".$face[0]."');\\\"><img src='".$public_r[newsurl]."e/data/face/".$face[1]."' border=0></a>".$br;
  123. }
  124. $allface="document.write(\"<script src='".$public_r[newsurl]."e/data/js/addplface.js'></script>\");document.write(\"".$allface."\");";
  125. WriteFiletext_n($filename,$allface);
  126. }
  127. $enews=$_POST['enews'];
  128. if(empty($enews))
  129. {$enews=$_GET['enews'];}
  130. if($enews)
  131. {
  132. hCheckEcmsRHash();
  133. include('../../class/hplfun.php');
  134. }
  135. //增加
  136. if($enews=="AddPlface")
  137. {
  138. AddPlface($_POST,$logininid,$loginin);
  139. }
  140. //修改
  141. elseif($enews=="EditPlface")
  142. {
  143. EditPlface($_POST,$logininid,$loginin);
  144. }
  145. $r=$empire->fetch1("select plface from {$dbtbpre}enewspl_set limit 1");
  146. db_close();
  147. $empire=null;
  148. ?>
  149. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  150. <html>
  151. <head>
  152. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  153. <title>管理评论表情</title>
  154. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  155. </head>
  156. <body>
  157. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  158. <tr>
  159. <td>位置:<a href="ListAllPl.php<?=$ecms_hashur['whehref']?>">管理评论</a> &gt; <a href="plface.php<?=$ecms_hashur['whehref']?>">管理评论表情</a></td>
  160. </tr>
  161. </table>
  162. <form name="addplfaceform" method="post" action="plface.php">
  163. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  164. <?=$ecms_hashur['form']?>
  165. <tr class="header">
  166. <td width="53%" height="25">增加表情:
  167. <input type=hidden name=enews value=AddPlface></td>
  168. </tr>
  169. <tr>
  170. <td height="25" bgcolor="#FFFFFF"><div align="center">将符号:
  171. <input name="faceword" type="text" id="faceword">
  172. 替换成图片:
  173. e/data/face/<input name="facefile" type="text" id="facefile" value="">
  174. <a href="#ecms" onclick="window.open('ChangePlfaceFile.php?returnform=opener.document.addplfaceform.facefile.value<?=$ecms_hashur['ehref']?>','','width=400,height=500,scrollbars=yes');">[选择]</a>
  175. &nbsp;<input type="submit" name="Submit" value="增加">
  176. </div></td>
  177. </tr>
  178. </table>
  179. </form>
  180. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  181. <form name="plfaceform" method=post action=plface.php>
  182. <?=$ecms_hashur['form']?>
  183. <input type=hidden name=enews value=EditPlface>
  184. <tr class="header">
  185. <td width="79%" height="25"><div align="center">管理表情</div></td>
  186. </tr>
  187. <?php
  188. $facer=explode("||",$r[plface]);
  189. $count=count($facer);
  190. for($i=1;$i<$count-1;$i++)
  191. {
  192. $face=explode("##",$facer[$i]);
  193. ?>
  194. <tr bgcolor="#FFFFFF">
  195. <td height="25"> <div align="center">将符号
  196. <input name="faceword[]" type="text" value="<?=$face[0]?>">
  197. 替换成&nbsp;
  198. <img src="../../data/face/<?=$face[1]?>" border=0>&nbsp;(e/data/face/
  199. <input name="facefile[]" type="text" value="<?=$face[1]?>">
  200. )</div></td>
  201. </tr>
  202. <?
  203. }
  204. ?>
  205. <tr bgcolor="#FFFFFF">
  206. <td height="25"><div align="center">
  207. <input type="submit" name="Submit3" value="提交">
  208. &nbsp;
  209. <input name="Submit4" type="reset" value="重置">
  210. </div></td>
  211. </tr>
  212. <tr bgcolor="#FFFFFF">
  213. <td height="25"><font color="#666666">说明:要删除的表情将符号设为空即可。</font></td>
  214. </tr>
  215. </form>
  216. </table>
  217. <br>
  218. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  219. <tr>
  220. <td>前台评论表情调用代码:
  221. <input name="textfield" type="text" value="&lt;script src=&quot;<?=$public_r['newsurl']?>d/js/js/plface.js&quot;&gt;&lt;/script&gt;" size="60">
  222. [<a href="../view/js.php?js=plface&p=js<?=$ecms_hashur['ehref']?>" target="_blank">预览</a>]</td>
  223. </tr>
  224. </table>
  225. </body>
  226. </html>