AddF.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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. $r[iscj]=1;
  28. $r[tobr]=0;
  29. $r[dohtml]=1;
  30. $r[myorder]=0;
  31. $disabled='';
  32. $tbdatafhidden='';
  33. $savetxthidden='';
  34. $fmvnum=1;
  35. $fmvline=3;
  36. $fmvmust=1;
  37. $url="数据表:[".$dbtbpre."ecms_".$tbname."]&nbsp;>&nbsp;<a href=ListF.php?tid=$tid&tbname=$tbname".$ecms_hashur['ehref'].">字段管理</a>&nbsp;>&nbsp;增加字段";
  38. $postword='增加';
  39. //修改字段
  40. if($enews=="EditF")
  41. {
  42. $fid=(int)$_GET['fid'];
  43. $url="数据表:[".$dbtbpre."ecms_".$tbname."]&nbsp;>&nbsp;<a href=ListF.php?tid=$tid&tbname=$tbname".$ecms_hashur['ehref'].">字段管理</a>&nbsp;>&nbsp;修改字段";
  44. $postword='修改';
  45. $r=$empire->fetch1("select * from {$dbtbpre}enewsf where fid='$fid' and tid='$tid'");
  46. if(!$r[fid])
  47. {
  48. printerror("ErrorUrl","history.go(-1)");
  49. }
  50. //元素长度
  51. if($r[fform]=='textarea'||$r[fform]=='editor')
  52. {
  53. $fsr=explode(',',$r['fformsize']);
  54. $fformwidth=$fsr[0];
  55. $fformheight=$fsr[1];
  56. }
  57. //多值元素
  58. if($r[fform]=='morevaluefield')
  59. {
  60. $fmvr=explode(',',$r['fmvnum']);
  61. $fmvnum=$fmvr[0];
  62. $fmvline=$fmvr[1];
  63. $fmvmust=$fmvr[2];
  64. }
  65. $oftype="type".$r[ftype];
  66. $$oftype=" selected";
  67. $ofform="form".$r[fform];
  68. $$ofform=" selected";
  69. $disabled=' disabled';
  70. $tbdatafhidden='<input type="hidden" name="tbdataf" value="'.$r[tbdataf].'">';
  71. $savetxthidden='<input type="hidden" name="savetxt" value="'.$r[savetxt].'">';
  72. }
  73. db_close();
  74. $empire=null;
  75. ?>
  76. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  77. <html>
  78. <head>
  79. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  80. <title><?=$postword?>字段</title>
  81. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  82. <script>
  83. function ShowFieldFormSet(obj,val){
  84. if(val=='text'||val=='password'||val=='flash'||val=='file'||val=='date'||val=='color'||val=='datetime')
  85. {
  86. fsizediv.style.display="";
  87. fwidthdiv.style.display="none";
  88. flinkfielddiv.style.display="none";
  89. feditordiv.style.display="none";
  90. defvaldiv.style.display="none";
  91. fmorevaluediv.style.display="none";
  92. }
  93. else if(val=='img')
  94. {
  95. fsizediv.style.display="";
  96. fwidthdiv.style.display="none";
  97. flinkfielddiv.style.display="none";
  98. feditordiv.style.display="none";
  99. defvaldiv.style.display="none";
  100. fmorevaluediv.style.display="none";
  101. }
  102. else if(val=='editor')
  103. {
  104. fsizediv.style.display="none";
  105. fwidthdiv.style.display="";
  106. flinkfielddiv.style.display="none";
  107. feditordiv.style.display="";
  108. defvaldiv.style.display="none";
  109. fmorevaluediv.style.display="none";
  110. }
  111. else if(val=='textarea'||val=='ubbeditor')
  112. {
  113. fsizediv.style.display="none";
  114. fwidthdiv.style.display="";
  115. flinkfielddiv.style.display="none";
  116. feditordiv.style.display="none";
  117. defvaldiv.style.display="none";
  118. fmorevaluediv.style.display="none";
  119. }
  120. else if(val=='select'||val=='radio'||val=='checkbox')
  121. {
  122. fsizediv.style.display="none";
  123. fwidthdiv.style.display="none";
  124. flinkfielddiv.style.display="none";
  125. feditordiv.style.display="none";
  126. defvaldiv.style.display="";
  127. fmorevaluediv.style.display="none";
  128. }
  129. else if(val=='linkfield')
  130. {
  131. fsizediv.style.display="";
  132. fwidthdiv.style.display="none";
  133. flinkfielddiv.style.display="";
  134. feditordiv.style.display="none";
  135. defvaldiv.style.display="none";
  136. fmorevaluediv.style.display="none";
  137. }
  138. else if(val=='linkfieldselect')
  139. {
  140. fsizediv.style.display="none";
  141. fwidthdiv.style.display="none";
  142. flinkfielddiv.style.display="";
  143. feditordiv.style.display="none";
  144. defvaldiv.style.display="none";
  145. fmorevaluediv.style.display="none";
  146. }
  147. else if(val=='morevaluefield')
  148. {
  149. fsizediv.style.display="none";
  150. fwidthdiv.style.display="none";
  151. flinkfielddiv.style.display="none";
  152. feditordiv.style.display="none";
  153. defvaldiv.style.display="none";
  154. fmorevaluediv.style.display="";
  155. }
  156. }
  157. </script>
  158. </head>
  159. <body onload="ShowFieldFormSet(document.addfform,'<?=$r[fform]?$r[fform]:'text'?>')">
  160. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  161. <tr>
  162. <td>位置:<?=$url?></td>
  163. </tr>
  164. </table>
  165. <form name="addfform" method="post" action="../ecmsmod.php">
  166. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  167. <tr>
  168. <td height="25" colspan="2" class="header">
  169. <?=$postword?>
  170. 数据表(
  171. <?=$dbtbpre?>
  172. ecms_
  173. <?=$tbname?>
  174. )字段
  175. <input name="fid" type="hidden" id="fid" value="<?=$fid?>"> <input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  176. <input name="oldfform" type="hidden" id="oldfform" value="<?=$r[fform]?>">
  177. <input name="oldf" type="hidden" id="oldf" value="<?=$r[f]?>"> <input name="tbname" type="hidden" id="tbname" value="<?=$tbname?>">
  178. <input name="tid" type="hidden" id="tid" value="<?=$tid?>"> <input name="oldfvalue" type="hidden" id="oldfvalue" value="<?=ehtmlspecialchars(stripSlashes($r[fvalue]))?>">
  179. <input name="oldsavetxt" type="hidden" id="oldsavetxt" value="<?=$r[savetxt]?>">
  180. <input name="oldlinkfieldval" type="hidden" id="oldlinkfieldval" value="<?=$r[linkfieldval]?>">
  181. <input name="oldfformsize" type="hidden" id="oldfformsize" value="<?=$r[fformsize]?>">
  182. <?=$ecms_hashur['form']?>
  183. </td>
  184. </tr>
  185. <tr>
  186. <td height="25" colspan="2">基本设置</td>
  187. </tr>
  188. <tr>
  189. <td width="25%" height="25" bgcolor="#FFFFFF">字段名</td>
  190. <td width="75%" height="25" bgcolor="#FFFFFF"> <input name="f" type="text" id="f" value="<?=$r[f]?>">
  191. <font color="#666666">(由英文与数字组成,且不能以数字开头。比如:&quot;title&quot;)</font></td>
  192. </tr>
  193. <tr>
  194. <td height="25" bgcolor="#FFFFFF">字段标识</td>
  195. <td height="25" bgcolor="#FFFFFF"> <input name="fname" type="text" id="fname" value="<?=$r[fname]?>">
  196. <font color="#666666">(比如:&quot;标题&quot;)</font></td>
  197. </tr>
  198. <tr>
  199. <td height="25" bgcolor="#FFFFFF">字段类型</td>
  200. <td height="25" bgcolor="#FFFFFF"> <select name="ftype" id="select">
  201. <option value="VARCHAR"<?=$typeVARCHAR?>>字符型0-255字节(VARCHAR)</option>
  202. <option value="CHAR"<?=$typeCHAR?>>定长字符型0-255字节(CHAR)</option>
  203. <option value="TEXT"<?=$typeTEXT?>>小型字符型(TEXT)</option>
  204. <option value="MEDIUMTEXT"<?=$typeMEDIUMTEXT?>>中型字符型(MEDIUMTEXT)</option>
  205. <option value="LONGTEXT"<?=$typeLONGTEXT?>>大型字符型(LONGTEXT)</option>
  206. <option value="TINYINT"<?=$typeTINYINT?>>小数值型(TINYINT)</option>
  207. <option value="SMALLINT"<?=$typeSMALLINT?>>中数值型(SMALLINT)</option>
  208. <option value="INT"<?=$typeINT?>>大数值型(INT)</option>
  209. <option value="BIGINT"<?=$typeBIGINT?>>超大数值型(BIGINT)</option>
  210. <option value="FLOAT"<?=$typeFLOAT?>>数值浮点型(FLOAT)</option>
  211. <option value="DOUBLE"<?=$typeDOUBLE?>>数值双精度型(DOUBLE)</option>
  212. <option value="DATE"<?=$typeDATE?>>日期型(DATE)</option>
  213. <option value="DATETIME"<?=$typeDATETIME?>>日期时间型(DATETIME)</option>
  214. </select>
  215. 长度
  216. <input name="flen" type="text" id="flen" value="<?=$r[flen]?>" size="6">
  217. </td>
  218. </tr>
  219. <tr>
  220. <td height="25" bgcolor="#FFFFFF">存放表</td>
  221. <td height="25" bgcolor="#FFFFFF"> <input type="radio" name="tbdataf" value="0"<?=$r[tbdataf]==0?' checked':''?><?=$disabled?>>
  222. 主表
  223. <input type="radio" name="tbdataf" value="1"<?=$r[tbdataf]==1?' checked':''?><?=$disabled?>>
  224. 副表<?=$tbdatafhidden?><font color="#666666"> (设置后不能修改)</font></td>
  225. </tr>
  226. <tr>
  227. <td height="25" colspan="2">特殊属性</td>
  228. </tr>
  229. <tr>
  230. <td height="25" bgcolor="#FFFFFF">加索引</td>
  231. <td height="25" bgcolor="#FFFFFF"> <input type="radio" name="iskey" value="1"<?=$r[iskey]==1?' checked':''?>>
  232. <input type="radio" name="iskey" value="0"<?=$r[iskey]==0?' checked':''?>>
  233. <input name="oldiskey" type="hidden" id="oldiskey" value="<?=$r[iskey]?>"></td>
  234. </tr>
  235. <tr>
  236. <td height="25" bgcolor="#FFFFFF">值唯一</td>
  237. <td height="25" bgcolor="#FFFFFF"> <input type="radio" name="isonly" value="1"<?=$r[isonly]==1?' checked':''?>>
  238. <input type="radio" name="isonly" value="0"<?=$r[isonly]==0?' checked':''?>>
  239. <input name="oldisonly" type="hidden" id="oldisonly" value="<?=$r[isonly]?>"></td>
  240. </tr>
  241. <tr>
  242. <td height="25" bgcolor="#FFFFFF">采集项</td>
  243. <td height="25" bgcolor="#FFFFFF"> <input name="iscj" type="radio" value="1"<?=$r[iscj]==1?' checked':''?>>
  244. <input name="iscj" type="radio" value="0"<?=$r[iscj]==0?' checked':''?>>
  245. <input name="oldiscj" type="hidden" id="oldiscj" value="<?=$r[iscj]?>"></td>
  246. </tr>
  247. <tr>
  248. <td height="25" bgcolor="#FFFFFF">分页字段</td>
  249. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="ispage" value="1"<?=$r[ispage]==1?' checked':''?>>
  250. <input type="radio" name="ispage" value="0"<?=$r[ispage]==0?' checked':''?>>
  251. 否<font color="#666666">(表只可设置一个字段)</font></td>
  252. </tr>
  253. <tr>
  254. <td height="25" bgcolor="#FFFFFF">简介字段</td>
  255. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="issmalltext" value="1"<?=$r[issmalltext]==1?' checked':''?>>
  256. <input type="radio" name="issmalltext" value="0"<?=$r[issmalltext]==0?' checked':''?>>
  257. 否<font color="#666666">(模板里设置截取简介字数的字段)</font></td>
  258. </tr>
  259. <tr>
  260. <td height="25" bgcolor="#FFFFFF">内容存文本</td>
  261. <td height="25" bgcolor="#FFFFFF"> <input type="radio" name="savetxt" value="1"<?=$r[savetxt]==1?' checked':''?><?=$disabled?>>
  262. <input type="radio" name="savetxt" value="0"<?=$r[savetxt]==0?' checked':''?><?=$disabled?>>
  263. 否<?=$savetxthidden?><font color="#666666">(设置后不能修改,表只可设置一个字段)</font></td>
  264. </tr>
  265. <tr>
  266. <td height="25" bgcolor="#FFFFFF">前台内容显示</td>
  267. <td height="25" bgcolor="#FFFFFF"> <input name="tobr" type="checkbox" id="tobr" value="1"<?=$r[tobr]==1?' checked':''?>>
  268. 将回车替换成换行符,
  269. <input name="dohtml" type="checkbox" id="dohtml" value="1"<?=$r[dohtml]==1?' checked':''?>>
  270. 支持html代码</td>
  271. </tr>
  272. <tr>
  273. <td height="25" bgcolor="#FFFFFF">后台增加信息处理函数</td>
  274. <td height="25" bgcolor="#FFFFFF"><input name="adddofun" type="text" id="adddofun" value="<?=$r[adddofun]?>">
  275. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  276. </tr>
  277. <tr>
  278. <td height="25" bgcolor="#FFFFFF">后台修改信息处理函数</td>
  279. <td height="25" bgcolor="#FFFFFF"><input name="editdofun" type="text" id="editdofun" value="<?=$r[editdofun]?>">
  280. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  281. </tr>
  282. <tr>
  283. <td height="25" bgcolor="#FFFFFF">前台增加信息处理函数</td>
  284. <td height="25" bgcolor="#FFFFFF"><input name="qadddofun" type="text" id="qadddofun" value="<?=$r[qadddofun]?>">
  285. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  286. </tr>
  287. <tr>
  288. <td height="25" bgcolor="#FFFFFF">前台修改信息处理函数</td>
  289. <td height="25" bgcolor="#FFFFFF"><input name="qeditdofun" type="text" id="qeditdofun" value="<?=$r[qeditdofun]?>">
  290. <font color="#666666">(一般不设置,格式“函数名##参数”参数可不设置)</font></td>
  291. </tr>
  292. <tr>
  293. <td height="25" bgcolor="#FFFFFF">显示顺序</td>
  294. <td height="25" bgcolor="#FFFFFF"> <input name="myorder" type="text" id="myorder" value="<?=$r[myorder]?>">
  295. <font color="#666666">(数字越小越前面)</font></td>
  296. </tr>
  297. <tr>
  298. <td height="25" colspan="2">表单显示设置</td>
  299. </tr>
  300. <tr>
  301. <td bgcolor="#FFFFFF">输入表单显示元素</td>
  302. <td height="25" bgcolor="#FFFFFF"> <select name="fform" id="fform" onchange="ShowFieldFormSet(document.addfform,this.options[this.selectedIndex].value)">
  303. <option value="text"<?=$formtext?>>单行文本框(text)</option>
  304. <option value="password"<?=$formpassword?>>密码框(password)</option>
  305. <option value="select"<?=$formselect?>>下拉框(select)</option>
  306. <option value="radio"<?=$formradio?>>单选框(radio)</option>
  307. <option value="checkbox"<?=$formcheckbox?>>复选框(checkbox)</option>
  308. <option value="textarea"<?=$formtextarea?>>多行文本框(textarea)</option>
  309. <option value="editor"<?=$formeditor?>>编辑器(editor)</option>
  310. <option value="img"<?=$formimg?>>图片(img)</option>
  311. <option value="flash"<?=$formflash?>>FLASH文件(flash)</option>
  312. <option value="file"<?=$formfile?>>文件(file)</option>
  313. <option value="date"<?=$formdate?>>日期(date)</option>
  314. <option value="datetime"<?=$formdatetime?>>日期时间(datetime)</option>
  315. <option value="color"<?=$formcolor?>>颜色(color)</option>
  316. <option value="morevaluefield"<?=$formmorevaluefield?>>多值字段(morevaluefield)</option>
  317. <option value="linkfield"<?=$formlinkfield?>>选择外表关联字段(linkfield)</option>
  318. <option value="linkfieldselect"<?=$formlinkfieldselect?>>下拉外表关联字段(linkfieldselect)</option>
  319. </select> </td>
  320. </tr>
  321. <tr>
  322. <td height="25" bgcolor="#FFFFFF">选项</td>
  323. <td height="25" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="1" cellpadding="2">
  324. <tr id="fsizediv">
  325. <td height="23"><strong>元素长度</strong><br> <input name="fformsize" type="text" id="fformsize" value="<?=$r[fformsize]?>">
  326. <font color="#666666">(空为按默认)</font></td>
  327. </tr>
  328. <tr id="fwidthdiv">
  329. <td height="23"><strong>元素大小</strong><br>
  330. 宽度
  331. <input name="fformwidth" type="text" id="fformwidth" value="<?=$fformwidth?>" size="6">
  332. ×高度
  333. <input name="fformheight" type="text" id="fformheight" value="<?=$fformheight?>" size="6">
  334. <font color="#666666">(空为按默认)</font></td>
  335. </tr>
  336. <tr id="flinkfielddiv">
  337. <td height="23"><strong>选择模型字段设置</strong><br>
  338. 数据表名
  339. <input name="linkfieldtb" type="text" id="linkfieldtb" value="<?=$r[linkfieldtb]?>">
  340. <br>
  341. 值字段名
  342. <input name="linkfieldval" type="text" id="linkfieldval" value="<?=$r[linkfieldval]?>">
  343. <input name="samedata" type="checkbox" id="samedata" value="1"<?=$r[samedata]==1?' checked':''?>>
  344. 数据同步<br>
  345. 显示字段
  346. <input name="linkfieldshow" type="text" id="linkfieldshow" value="<?=$r[linkfieldshow]?>">
  347. </td>
  348. </tr>
  349. <tr id="feditordiv">
  350. <td height="23"><strong>编辑器样式</strong><br> <input type="radio" name="editorys" value="0"<?=$r[editorys]==0?' checked':''?>>
  351. 标准型
  352. <input type="radio" name="editorys" value="1"<?=$r[editorys]==1?' checked':''?>>
  353. 简洁型</td>
  354. </tr>
  355. <tr id="fmorevaluediv">
  356. <td height="23"><strong>多值字段元素格式</strong><br>
  357. 设置列数
  358. <input name="fmvnum" type="text" id="fmvnum" value="<?=$fmvnum?>" size="6">
  359. ,默认行数
  360. <input name="fmvline" type="text" id="fmvline" value="<?=$fmvline?>" size="6">
  361. ,第
  362. <input name="fmvmust" type="text" id="fmvmust" value="<?=$fmvmust?>" size="6">
  363. 列必填</td>
  364. </tr>
  365. </table></td>
  366. </tr>
  367. <tr>
  368. <td valign="top" bgcolor="#FFFFFF"><p>初始值<br>
  369. <font color="#666666"><span id="defvaldiv">(多个值用&quot;回车&quot;格开;<br>
  370. “下拉/单选/复选”格式用:值==名称;<br>
  371. 当值等于名称时,名称可省略;<br>
  372. 默认选项后面加::default)</span></font></p></td>
  373. <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>
  374. </tr>
  375. <tr>
  376. <td height="25" valign="top" bgcolor="#FFFFFF">输入表单替换html代码<br> <font color="#666666">(增加字段时请留空)</font></td>
  377. <td height="25" bgcolor="#FFFFFF"> <textarea name="fhtml" cols="65" rows="10" id="fhtml" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[fhtml]))?></textarea></td>
  378. </tr>
  379. <tr>
  380. <td height="25" valign="top" bgcolor="#FFFFFF">投稿表单替换html代码<br> <font color="#666666">(增加字段时请留空)</font></td>
  381. <td height="25" bgcolor="#FFFFFF"> <textarea name="qfhtml" cols="65" rows="10" id="qfhtml" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[qfhtml]))?></textarea></td>
  382. </tr>
  383. <tr>
  384. <td height="25" valign="top" bgcolor="#FFFFFF">注释</td>
  385. <td height="25" bgcolor="#FFFFFF"> <textarea name="fzs" cols="65" rows="6" id="fzs" style="WIDTH: 100%"><?=stripSlashes($r[fzs])?></textarea></td>
  386. </tr>
  387. <tr>
  388. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  389. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交">
  390. <input type="reset" name="Submit2" value="重置"></td>
  391. </tr>
  392. </table>
  393. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  394. <tr>
  395. <td height="25"><font color="#666666">说明:主表字段越少效率越高,不在列表调用字段建议将字段存在副表。</font></td>
  396. </tr>
  397. </table>
  398. </form>
  399. </body>
  400. </html>