EditSysF.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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,"f");
  20. $tid=(int)$_GET['tid'];
  21. $tbname=RepPostVar($_GET['tbname']);
  22. if(empty($tid)||empty($tbname))
  23. {
  24. printerror("ErrorUrl","history.go(-1)");
  25. }
  26. $enews=RepPostStr($_GET['enews'],1);
  27. $fid=(int)$_GET['fid'];
  28. $url="数据表:[".$dbtbpre."ecms_".$tbname."]&nbsp;>&nbsp;<a href=ListF.php?tid=$tid&tbname=$tbname".$ecms_hashur['ehref'].">字段管理</a>&nbsp;>&nbsp;修改系统字段";
  29. $r=$empire->fetch1("select * from {$dbtbpre}enewsf where fid='$fid' and tid='$tid'");
  30. if(!$r[fid])
  31. {
  32. printerror("ErrorUrl","history.go(-1)");
  33. }
  34. $oftype="type".$r[ftype];
  35. $$oftype=" selected";
  36. $ofform="form".$r[fform];
  37. $$ofform=" selected";
  38. db_close();
  39. $empire=null;
  40. ?>
  41. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  42. <html>
  43. <head>
  44. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  45. <title>修改系统字段</title>
  46. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  47. <script>
  48. function ShowFieldFormSet(obj,val){
  49. if(val=='text')
  50. {
  51. fsizediv.style.display="";
  52. flinkfielddiv.style.display="none";
  53. }
  54. else if(val=='img')
  55. {
  56. fsizediv.style.display="";
  57. flinkfielddiv.style.display="none";
  58. }
  59. else if(val=='linkfield')
  60. {
  61. fsizediv.style.display="";
  62. flinkfielddiv.style.display="";
  63. }
  64. else if(val=='linkfieldselect')
  65. {
  66. fsizediv.style.display="none";
  67. flinkfielddiv.style.display="";
  68. }
  69. }
  70. </script>
  71. </head>
  72. <body onload="ShowFieldFormSet(document.addfform,'<?=$r[fform]?$r[fform]:'text'?>')">
  73. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  74. <tr>
  75. <td>位置:<?=$url?></td>
  76. </tr>
  77. </table>
  78. <form name="addfform" method="post" action="../ecmsmod.php">
  79. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  80. <?=$ecms_hashur['form']?>
  81. <tr>
  82. <td height="25" colspan="2" class="header"> 修改数据表(
  83. <?=$dbtbpre?>
  84. ecms_
  85. <?=$tbname?>
  86. )的系统字段
  87. <input name="fid" type="hidden" id="fid" value="<?=$fid?>"> <input name="enews" type="hidden" id="enews" value="EditSysF">
  88. <input name="oldfform" type="hidden" id="oldfform" value="<?=$r[fform]?>">
  89. <input name="oldf" type="hidden" id="oldf" value="<?=$r[f]?>"> <input name="tbname" type="hidden" id="tbname" value="<?=$tbname?>">
  90. <input name="tid" type="hidden" id="tid" value="<?=$tid?>"> <input name="oldfvalue" type="hidden" id="oldfvalue" value="<?=ehtmlspecialchars(stripSlashes($r[fvalue]))?>">
  91. <input name="oldiskey" type="hidden" id="oldiskey" value="<?=$r[iskey]?>">
  92. <input name="oldsavetxt" type="hidden" id="oldsavetxt" value="<?=$r[savetxt]?>">
  93. <input name="oldisonly" type="hidden" id="oldisonly" value="<?=$r[isonly]?>">
  94. <input name="oldlinkfieldval" type="hidden" id="oldlinkfieldval" value="<?=$r[linkfieldval]?>">
  95. <input name="oldfformsize" type="hidden" id="oldfformsize" value="<?=$r[fformsize]?>">
  96. </td>
  97. </tr>
  98. <tr>
  99. <td height="25" colspan="2">基本设置</td>
  100. </tr>
  101. <tr>
  102. <td width="25%" height="25" bgcolor="#FFFFFF">字段名</td>
  103. <td width="75%" height="25" bgcolor="#FFFFFF"><b>
  104. <?=$r[f]?>
  105. <input name="f" type="hidden" id="f" value="<?=$r[f]?>">
  106. </b></td>
  107. </tr>
  108. <tr>
  109. <td height="25" bgcolor="#FFFFFF">字段标识</td>
  110. <td height="25" bgcolor="#FFFFFF"> <input name="fname" type="text" id="fname" value="<?=$r[fname]?>"></td>
  111. </tr>
  112. <?php
  113. if($r[f]=='title'||$r[f]=='titlepic')
  114. {
  115. ?>
  116. <tr>
  117. <td height="25" bgcolor="#FFFFFF">字段类型</td>
  118. <td height="25" bgcolor="#FFFFFF"> <select name="ftype" id="select">
  119. <option value="CHAR"<?=$typeCHAR?>>定长字符型0-255字节(CHAR)</option>
  120. <option value="VARCHAR"<?=$typeVARCHAR?>>字符型0-255字节(VARCHAR)</option>
  121. </select>
  122. 长度
  123. <input name="flen" type="text" id="flen" value="<?=$r[flen]?>" size="6">
  124. </td>
  125. </tr>
  126. <?php
  127. }
  128. else
  129. {
  130. ?>
  131. <input type="hidden" name="ftype" value="<?=$r[ftype]?>">
  132. <input type="hidden" name="flen" value="<?=$r[flen]?>">
  133. <?php
  134. }
  135. ?>
  136. <tr>
  137. <td height="25" colspan="2">特殊属性</td>
  138. </tr>
  139. <?php
  140. if($r[f]!='special.field')
  141. {
  142. ?>
  143. <?php
  144. if($r[f]!='newstime')
  145. {
  146. ?>
  147. <tr>
  148. <td height="25" bgcolor="#FFFFFF">加索引</td>
  149. <td height="25" bgcolor="#FFFFFF"> <input type="radio" name="iskey" value="1"<?=$r[iskey]==1?' checked':''?>>
  150. <input type="radio" name="iskey" value="0"<?=$r[iskey]==0?' checked':''?>>
  151. 否</td>
  152. </tr>
  153. <?php
  154. }
  155. else
  156. {
  157. ?>
  158. <input type="hidden" name="iskey" value="<?=$r[iskey]?>">
  159. <?php
  160. }
  161. ?>
  162. <tr>
  163. <td height="25" bgcolor="#FFFFFF">值唯一</td>
  164. <td height="25" bgcolor="#FFFFFF"> <input type="radio" name="isonly" value="1"<?=$r[isonly]==1?' checked':''?>>
  165. <input type="radio" name="isonly" value="0"<?=$r[isonly]==0?' checked':''?>>
  166. 否</td>
  167. </tr>
  168. <tr>
  169. <td height="25" bgcolor="#FFFFFF">后台增加信息处理函数</td>
  170. <td height="25" bgcolor="#FFFFFF"><input name="adddofun" type="text" id="adddofun" value="<?=$r[adddofun]?>">
  171. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  172. </tr>
  173. <tr>
  174. <td height="25" bgcolor="#FFFFFF">后台修改信息处理函数</td>
  175. <td height="25" bgcolor="#FFFFFF"><input name="editdofun" type="text" id="editdofun" value="<?=$r[editdofun]?>">
  176. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  177. </tr>
  178. <tr>
  179. <td height="25" bgcolor="#FFFFFF">前台增加信息处理函数</td>
  180. <td height="25" bgcolor="#FFFFFF"><input name="qadddofun" type="text" id="qadddofun" value="<?=$r[qadddofun]?>">
  181. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  182. </tr>
  183. <tr>
  184. <td height="25" bgcolor="#FFFFFF">前台修改信息处理函数</td>
  185. <td height="25" bgcolor="#FFFFFF"><input name="qeditdofun" type="text" id="qeditdofun" value="<?=$r[qeditdofun]?>">
  186. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  187. </tr>
  188. <?php
  189. }
  190. ?>
  191. <tr>
  192. <td height="25" bgcolor="#FFFFFF">显示顺序</td>
  193. <td height="25" bgcolor="#FFFFFF"> <input name="myorder" type="text" id="myorder" value="<?=$r[myorder]?>">
  194. <font color="#666666">(数字越小越前面)</font></td>
  195. </tr>
  196. <tr>
  197. <td height="25" colspan="2">表单显示设置</td>
  198. </tr>
  199. <?php
  200. if($r[f]!='special.field')
  201. {
  202. ?>
  203. <tr>
  204. <td bgcolor="#FFFFFF">输入表单显示元素</td>
  205. <td height="25" bgcolor="#FFFFFF"> <select name="fform" id="fform" onchange="ShowFieldFormSet(document.addfform,this.options[this.selectedIndex].value)">
  206. <option value="text"<?=$formtext?>>单行文本框(text)</option>
  207. <option value="img"<?=$formimg?>>图片(img)</option>
  208. <option value="linkfield"<?=$formlinkfield?>>选择外表关联字段(linkfield)</option>
  209. <option value="linkfieldselect"<?=$formlinkfieldselect?>>下拉外表关联字段(linkfieldselect)</option>
  210. </select> </td>
  211. </tr>
  212. <tr>
  213. <td height="25" bgcolor="#FFFFFF">选项</td>
  214. <td height="25" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="1" cellpadding="2">
  215. <tr id="fsizediv">
  216. <td height="23"><strong>元素长度</strong><br> <input name="fformsize" type="text" id="fformsize2" value="<?=$r[fformsize]?>">
  217. <font color="#666666">(空为按默认)</font></td>
  218. </tr>
  219. <tr id="flinkfielddiv">
  220. <td height="23"><strong>选择模型字段设置</strong><br>
  221. 数据表名
  222. <input name="linkfieldtb" type="text" id="linkfieldtb" value="<?=$r[linkfieldtb]?>">
  223. <br>
  224. 值字段名
  225. <input name="linkfieldval" type="text" id="linkfieldval" value="<?=$r[linkfieldval]?>">
  226. <input name="samedata" type="checkbox" id="samedata" value="1"<?=$r[samedata]==1?' checked':''?>>
  227. 数据同步<br>
  228. 显示字段
  229. <input name="linkfieldshow" type="text" id="linkfieldshow" value="<?=$r[linkfieldshow]?>">
  230. <input name="oldlinkfieldtb" type="hidden" id="oldlinkfieldtb" value="<?=$r[linkfieldtb]?>">
  231. <input name="oldlinkfieldshow" type="hidden" id="oldlinkfieldshow" value="<?=$r[linkfieldshow]?>"></td>
  232. </tr>
  233. </table></td>
  234. </tr>
  235. <tr>
  236. <td valign="top" bgcolor="#FFFFFF">初始值</td>
  237. <td height="25" bgcolor="#FFFFFF"> <textarea name="fvalue" cols="65" rows="8" id="fvalue" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes(str_replace("|","\r\n",$r[fvalue])))?></textarea></td>
  238. </tr>
  239. <?php
  240. }
  241. ?>
  242. <tr>
  243. <td height="25" valign="top" bgcolor="#FFFFFF">输入表单替换html代码<br> <font color="#666666">(增加字段时请留空)</font></td>
  244. <td height="25" bgcolor="#FFFFFF"> <textarea name="fhtml" cols="65" rows="10" id="fhtml" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[fhtml]))?></textarea></td>
  245. </tr>
  246. <tr>
  247. <td height="25" valign="top" bgcolor="#FFFFFF">投稿表单替换html代码<br> <font color="#666666">(增加字段时请留空)</font></td>
  248. <td height="25" bgcolor="#FFFFFF"> <textarea name="qfhtml" cols="65" rows="10" id="qfhtml" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[qfhtml]))?></textarea></td>
  249. </tr>
  250. <tr>
  251. <td height="25" valign="top" bgcolor="#FFFFFF">注释</td>
  252. <td height="25" bgcolor="#FFFFFF"> <textarea name="fzs" cols="65" rows="6" id="fzs" style="WIDTH: 100%"><?=stripSlashes($r[fzs])?></textarea></td>
  253. </tr>
  254. <tr>
  255. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  256. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交">
  257. <input type="reset" name="Submit2" value="重置"></td>
  258. </tr>
  259. </table>
  260. </form>
  261. </body>
  262. </html>