国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

mychannel_field_edit.htm 11KB

2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
2年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>修改字段</title>
  7. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. <script src="../static/web/js/jquery.min.js"></script>
  11. <script src="../static/web/js/bootstrap.bundle.min.js"></script>
  12. <script src="js/main.js"></script>
  13. <script>
  14. function GetFields() {
  15. var theform = document.form1;
  16. var itemname = theform.itemname.value;
  17. var fieldname = theform.fname.value;
  18. var dtype = theform.dtype.value;
  19. var isnull = theform.isnull.value;
  20. var vdefault = theform.vdefault.value;
  21. var maxlength = theform.maxlength.value;
  22. var vinnertext = theform.vinnertext.value;
  23. var spage = (theform.spage[0].checked ? theform.spage[0].value : theform.spage[1].value);
  24. var sisnull = (isnull == 0 ? "false" : "true");
  25. var autofield = (theform.autofield[0].checked ? theform.autofield[0].value : theform.autofield[1].value);
  26. var islist = (theform.islist.checked ? 1 : 0);
  27. var notsend = (theform.notsend.checked ? 1 : 0);
  28. if (itemname == "") {
  29. ShowMsg("表单提示名称不能为空");
  30. theform.itemname.focus();
  31. return false;
  32. }
  33. if ((dtype == "radio" || dtype == "select" || dtype == "checkbox") && vdefault == "") {
  34. ShowMsg("您选择的select或radio、checkbox类型,必须默认值设置选择的项目(用逗号[,]分开)");
  35. return false;
  36. }
  37. if (spage == "no") spage = "";
  38. relstr = "";
  39. if (dtype==="relation") {
  40. relstr = " automake=\""+automake+"\" channel=\""+$("#channeltype").val()+"\"";
  41. }
  42. revalue = "<field:" + fieldname + " itemname=\"" + itemname + "\" autofield=\"" + autofield + "\" notsend=\"" + notsend + "\" type=\"" + dtype + "\"";
  43. revalue += relstr + " isnull=\"" + sisnull + "\" islist=\"" + islist + "\" default=\"" + vdefault + "\" ";
  44. revalue += " maxlength=\"" + maxlength + "\" page=\"" + spage + "\">" + vinnertext + "</field:" + fieldname + ">";
  45. document.form1.fieldstring.value = revalue;
  46. return true;
  47. }
  48. $(document).ready(function () {
  49. $("#type").change(function (ele) {
  50. if ($(ele.currentTarget).val() === "relation") {
  51. $("#_relation").show();
  52. } else {
  53. $("#_relation").hide();
  54. }
  55. })
  56. });
  57. </script>
  58. <style>
  59. td {
  60. padding: 2px;
  61. padding-left: 6px;
  62. }
  63. .style1 {
  64. color: #FF3300
  65. }
  66. .style2 {
  67. color: #424b51
  68. }
  69. .nw {
  70. float: left;
  71. width: 150px;
  72. }
  73. .cls {
  74. clear: both;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  80. <form name="form1" action="mychannel_field_edit.php" method="post" onSubmit="return GetFields();">
  81. <input type="hidden" name="action" value="save">
  82. <input type="hidden" name="id" value="<?php echo $id?>">
  83. <input type="hidden" name="fname" value="<?php echo $fname?>">
  84. <input type="hidden" name="issystem" value="<?php echo $issystem?>">
  85. <input type="hidden" name="fieldstring" value="">
  86. <tr>
  87. <td bgcolor="#f8f8f8" colspan="2">
  88. <table width="98%" cellspacing="0" cellpadding="0" class="table table-borderless">
  89. <tr>
  90. <td width="30%"><a href="mychannel_main.php">频道管理</a> &gt; 查看修改字段</td>
  91. <td width="70%" align="right">
  92. <button type="button" name="ss1" class="btn btn-success btn-sm" onClick="location='mychannel_edit.php?id=<?php echo $id?>&dopost=edit';">当前模型信息</button>
  93. <button type="button" name="ss12" onClick="location='mychannel_main.php';" class="btn btn-success btn-sm">内容模型管理</button>
  94. </td>
  95. </tr>
  96. </table>
  97. </td>
  98. </tr>
  99. <?php if($row['issystem']==1){ ?>
  100. <tr>
  101. <td colspan="2">
  102. <span class="style1">您当前操作的字段属于系统模型字段:修改系统模型有风险,请不要随便改动系统模型的字段相关的属性</span>
  103. </td>
  104. </tr>
  105. <?php } ?>
  106. <tr>
  107. <td>表单提示文字:<br>
  108. <span class="style2">发布内容时显示的提示文字</span></td>
  109. <td><input type="text" name="itemname" id="itemname" value="<?php echo $ctag->GetAtt('itemname')?>" class="pubinputs"> *(发布内容时显示的项名字)</td>
  110. </tr>
  111. <tr>
  112. <td width="28%">字段名称:<br>
  113. <span class="style2">只能用英文字母或数字,数据表的真实字段名</span></td>
  114. <td width="72%" style="table-layout:fixed;word-break:break-all"><?php echo $fname?></td>
  115. </tr>
  116. <tr>
  117. <td>字段类型:</td>
  118. <td>
  119. <label><input type="radio" name="autofield" value="1" checked="checked" <?php echo ($ctag->GetAtt('autofield')==1 ? " checked":""); ?>> 系统自动生成表单字段</label>
  120. <label><input type="radio" name="autofield" value="0" <?php echo ( ($ctag->GetAtt('autofield')==''||$ctag->GetAtt('autofield')=='0') ? " checked":""); ?>> 已经固化在发布表单中字段</label></td>
  121. </tr>
  122. <tr>
  123. <td>前台参数:</td>
  124. <td>
  125. <label><input type="checkbox" name="islist" id="islist" value="1" <?php echo ($ctag->GetAtt('islist')==1 ? " checked":""); ?>> 使字段可以在列表的底层模板中获得(自定义字段默认仅能在文档模板显示,启用此选项将使列表查询变慢,如无必要请不要选择)</label><br>
  126. <label><input type="checkbox" name="notsend" id="notsend" value="1" <?php echo ($ctag->GetAtt('notsend')==1 ? " checked":""); ?> /> 前台投稿及采集规则禁用本字段</label>
  127. </td>
  128. </tr>
  129. <tr>
  130. <td>数据类型:</td>
  131. <td>
  132. <select name="dtype" id="type" style="width:260px">
  133. <?php
  134. $dtype = $ctag->GetAtt('type');
  135. if($dtype!='' && isset($fieldtypes[$dtype]))
  136. {
  137. echo "<option value='{$dtype}'>{$fieldtypes[$dtype]}</option>";
  138. $canchange = true;
  139. } else {
  140. echo "<option value='{$dtype}'>系统专用类型</option>";
  141. $canchange = false;
  142. }
  143. if($canchange)
  144. {
  145. ?>
  146. <option value="text">单行文本(varchar)</option>
  147. <option value="textchar">单行文本(char)</option>
  148. <option value="multitext">多行文本</option>
  149. <option value="htmltext">HTML文本</option>
  150. <option value="textdata">文本保存HTML数据</option>
  151. <option value="int">整数类型</option>
  152. <option value="float">小数类型</option>
  153. <option value="datetime">时间类型</option>
  154. <option value="img">图片</option>
  155. <option value="imgfile">图片(仅网址)</option>
  156. <option value="media">多媒体文件</option>
  157. <option value="addon">附件类型</option>
  158. <option value="select">使用option下拉框</option>
  159. <option value="radio">使用radio选项卡</option>
  160. <option value="checkbox">Checkbox多选框</option>
  161. <option value="stepselect">联动类型</option>
  162. <option value="relation">关联内容</option>
  163. <?php
  164. }
  165. ?>
  166. </select>
  167. </td>
  168. </tr>
  169. <tr id="_relation" <?php echo $dtype=="relation"? '' : 'style="display:none"'; ?>>
  170. <td>内容模型:<br>
  171. <span class="style2">选择关联内容对应的内容模型</span></td>
  172. <td>
  173. <select name="channeltype" id="channeltype" style="width:260px">
  174. <?php
  175. $channelid = $ctag->GetAtt('channel') == "" ? 1 : $ctag->GetAtt('channel');
  176. foreach($channelArray as $k=>$arr)
  177. {
  178. if($k==$channelid) {
  179. $nid = $arr['nid'];
  180. echo "<option value='{$k}' selected>{$arr['typename']}|{$arr['nid']}</option>";
  181. } else {
  182. echo "<option value='{$k}'>{$arr['typename']}|{$arr['nid']}</option>";
  183. }
  184. }
  185. ?>
  186. </select>
  187. <label><input type="checkbox" name="relation_automake" id="relation_automake" value="1" <?php echo $ctag->GetAtt('automake')==1? "checked" : ""; ?>> 发布时候自动更新关联内容HTML</label>
  188. </td>
  189. </tr>
  190. <tr>
  191. <td>内容是否需要分页符:<br>
  192. <span class="style2">如果内容需要分页符,不论何种内容,都可以用#P#副标题#e#作为分页符号实现内容分页,但一个模型里仅允许一个这样的字段!</span></td>
  193. <td>
  194. <input name="isnull" type="hidden" value="1">
  195. <label><input type="radio" name="spage" value="split" <?php if($ctag->GetAtt('page')=='split') echo "checked='1'"; ?>> 是</label>
  196. <label><input type="radio" name="spage" value="no" <?php if($ctag->GetAtt('page')=='no'||$ctag->GetAtt('page')=='') echo "checked='1'"; ?>> 否</label>
  197. </td>
  198. </tr>
  199. <tr>
  200. <td>默认值:<br>
  201. <span class="style2">如果定义数据类型为select、radio、checkbox时,此处填写被选择的项目(用“,”分开,如“男,女,人妖”)如果为联动选框,这里填写联动选框项目名称</span></td>
  202. <td><textarea name="vdefault" id="vdefault" style="width:70%;height:60px"><?php echo $ctag->GetAtt('default'); ?></textarea></td>
  203. </tr>
  204. <tr>
  205. <td>最大长度:<br>
  206. <span class="style2"> 文本数据必须填写,大于255为text类型 </span></td>
  207. <td><input type="text" name="maxlength" id="maxlength" value="<?php echo $ctag->GetAtt('maxlength')?>" style="width:80px;height:24px;padding-top:3px;"></td>
  208. </tr>
  209. <tr>
  210. <td>自定义表单HTML:</td>
  211. <td>自定义表单HTML用~name~表示提示文字,~form~表示表单元素</td>
  212. </tr>
  213. <tr>
  214. <td align="center"><br> </td>
  215. <td><textarea name="vinnertext" cols="45" rows="5" id="vinnertext" style="width:70%;height:120px"><?php echo $ctag->GetInnerText(); ?></textarea></td>
  216. </tr>
  217. <tr>
  218. <td colspan="2" bgcolor="#f8f8f8">
  219. <table width="100%" cellspacing="0" cellpadding="0" class="table table-borderless">
  220. <tr>
  221. <td align="center" class="py-3">
  222. <button type="submit" name="button1" id="button1" class="btn btn-success btn-sm">保存</button>
  223. <button type="reset" name="button3" id="button3" class="btn btn-success btn-sm">重置</button>
  224. </td>
  225. </tr>
  226. </table>
  227. </td>
  228. </tr>
  229. </form>
  230. </table>
  231. </body>
  232. </html>