国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

405 lines
17KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>修改内容模型</title>
  6. <script language="javascript">
  7. function Nav() {
  8. if (window.navigator.userAgent.indexOf("MSIE") >= 1) return 'IE';
  9. else if (window.navigator.userAgent.indexOf("Firefox") >= 1) return 'FF';
  10. else return "OT";
  11. }
  12. function $Obj(objname) {
  13. return document.getElementById(objname);
  14. }
  15. function ShowHide2(objname) {
  16. var obj = $Obj(objname);
  17. if (obj.style.display != 'block') { obj.style.display = 'block' }
  18. else { obj.style.display = 'none'; }
  19. }
  20. //删除
  21. function DelNote(gourl) {
  22. if (!window.confirm("您确认要删除这个字段吗")) { return false; }
  23. location.href = gourl;
  24. }
  25. function ShowObj(objname) {
  26. var obj = document.getElementById(objname);
  27. if (Nav() == 'IE') { obj.style.display = "block"; obj.style.display = "block"; }
  28. else obj.style.display = "table";
  29. }
  30. function HideObj(objname) {
  31. var obj = document.getElementById(objname);
  32. obj.style.display = "none";
  33. }
  34. function ShowItem1() {
  35. ShowObj('head1'); ShowObj('needset');
  36. HideObj('head2'); HideObj('adset');
  37. }
  38. function ShowItem2() {
  39. setTimeout(() => {
  40. var editor = CodeMirror.fromTextArea(document.getElementById('fieldset'), {
  41. lineNumbers: true,
  42. lineWrapping: true,
  43. mode: 'text/html'
  44. });
  45. }, 100);
  46. ShowObj('head2'); ShowObj('adset');
  47. HideObj('head1'); HideObj('needset');
  48. }
  49. </script>
  50. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  51. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  52. <link rel="stylesheet" href="../static/web/css/admin.css">
  53. <link rel="stylesheet" href="css/codemirror.css">
  54. <script type="text/javascript" src="js/codemirror.js"></script>
  55. <script type="text/javascript" src="js/mode/xml/xml.js"></script>
  56. <script type="text/javascript" src="js/mode/javascript/javascript.js"></script>
  57. <script type="text/javascript" src="js/mode/css/css.js"></script>
  58. <script type="text/javascript" src="js/mode/htmlmixed/htmlmixed.js"></script>
  59. </head>
  60. <body topmargin="8">
  61. <form name="form1" action="mychannel_edit.php" method="post">
  62. <input type='hidden' name='id' value='<?php echo $id?>'>
  63. <input type='hidden' name='dopost' value='save'>
  64. <input type='hidden' name='issystem' value='<?php echo $row['issystem']; ?>'>
  65. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" style="margin-bottom:10px" class="table maintable table-bordered mt-3">
  66. <tr>
  67. <td height="26" colspan="2" background="../static/web/img/tbg.gif" style="padding-left:10px"><a href="mychannel_main.php">内容模型管理</a> &gt; 修改内容模型</td>
  68. </tr>
  69. </table>
  70. <table width="98%" border="0" cellspacing="0" id="head1" cellpadding="0" align="center" style="display:block">
  71. <tr>
  72. <td colspan="2">
  73. <table border="0" cellpadding="0" cellspacing="0">
  74. <tr>
  75. <td width="86" height="26" align="center" background="../static/web/img/itemnote1.gif">基本设置</td>
  76. <td width="86" align="center" background="../static/web/img/itemnote2.gif"><a href="javascript:;" onClick="ShowItem2()">字段管理</a></td>
  77. </tr>
  78. </table>
  79. </td>
  80. </tr>
  81. </table>
  82. <table width="98%" border="0" cellspacing="0" id="head2" cellpadding="0" style="display:none" align="center">
  83. <tr>
  84. <td colspan="2">
  85. <table border="0" cellpadding="0" cellspacing="0">
  86. <tr>
  87. <td width="86" height="26" align="center" background="../static/web/img/itemnote2.gif" bgcolor="#F2F7DF"><a href="javascript:;" onClick="ShowItem1()">基本设置</a></td>
  88. <td width="86" align="center" background="../static/web/img/itemnote1.gif">字段管理</td>
  89. </tr>
  90. </table>
  91. </td>
  92. </tr>
  93. </table>
  94. <table width="98%" id='needset' border="0" align="center" cellpadding="3" cellspacing="1" style="display:block" class="table maintable table-bordered">
  95. <?php
  96. if($row['issystem'] == 1)
  97. {
  98. ?>
  99. <tr>
  100. <td colspan="2" bgcolor="#FFFFFF" style="color:#dc3545">
  101. 您目前所展开的是系统模型,系统模型一般对发布程序和管理程序已经固化,如果您胡乱修改系统模型将会导致使用这种内容类型的频道可能崩溃 </td>
  102. </tr>
  103. <?php
  104. }
  105. ?>
  106. <tr>
  107. <td bgcolor="#FFFFFF">模型性质<br>
  108. <span class="STYLE2" id="help5">如果为系统模型将禁止删除,此选项不可修改,对于独立模型,系统强制创建字段aid、栏目ID、发布时间、文档标题</span></td>
  109. <td bgcolor="#FFFFFF">
  110. <?php
  111. if($row['issystem']==0) echo "自动模型";
  112. else if($row['issystem']==1) echo "系统模型";
  113. else if($row['issystem']==-1) echo "独立模型";
  114. ?>
  115. </td>
  116. </tr>
  117. <tr>
  118. <td width="35%" bgcolor="#FFFFFF">频道ID<br>
  119. <span class="STYLE2" id='help1'>数字,创建后不可修改,并具有唯一性</span></td>
  120. <td width="65%" bgcolor="#FFFFFF">
  121. <?php echo $row['id']; ?> </td>
  122. </tr>
  123. <tr>
  124. <td bgcolor="#FFFFFF">名字标识<br>
  125. <span class="STYLE2" id="help2">与文档的模板相关连,建议由英文、数字或下划线组成,因为部份Unix系统无法识别中文文件,频道默认文档模板是
  126. “default/article_名字标识.htm”,列表模板、封面模板类推 </span></td>
  127. <td bgcolor="#FFFFFF">
  128. <?php echo $row['nid']; ?> </td>
  129. </tr>
  130. <tr>
  131. <td bgcolor="#FFFFFF">频道名称<br>
  132. <span class="STYLE2" id="help3">频道的中文名称,在后台管理,前台发布等均使用此名字</span></td>
  133. <td bgcolor="#FFFFFF"><input name="typename" type="text" id="typename" value="<?php echo $row['typename']; ?>" class="pubinputs"></td>
  134. </tr>
  135. <tr>
  136. <td bgcolor="#FFFFFF">附加表<br>
  137. <span class="STYLE2" id="help4">频道除主表以外其它自定义类型数据存放数据的表,如果您不使用主表关连的各种特性(推荐、会员权限等),也可以使用完全以附加表作为存储数据</span>
  138. </td>
  139. <td bgcolor="#FFFFFF"><input name="addtable" type="text" id="addtable" value="<?php echo $row['addtable']; ?>" class="pubinputs">
  140. ( #@__ 是表示数据表前缀)</td>
  141. </tr>
  142. <tr>
  143. <td bgcolor="#FFFFFF">是否支持会员投稿</td>
  144. <td bgcolor="#FFFFFF">
  145. <label><input name="issend" type="radio" class="np" value="0" <?php if($row['issend']==0) echo " checked='1' "; ?> />
  146. 不支持 </label>
  147. <label><input type="radio" name="issend" class="np" value="1" <?php if($row['issend']==1) echo " checked='1' "; ?> />
  148. 支持 </label> </td>
  149. </tr>
  150. <tr>
  151. <td bgcolor="#FFFFFF">会员许可投稿级别</td>
  152. <td bgcolor="#FFFFFF">
  153. <select name="sendrank" id="sendrank" style="width:120px">
  154. <option value='0'>游客</option>
  155. <?php
  156. $urank = $cuserLogin->getUserRank();
  157. $dsql->SetQuery("Select * from `#@__arcrank` where adminrank<='$urank' And `rank`>=10");
  158. $dsql->Execute();
  159. while($row2 = $dsql->GetObject())
  160. {
  161. if($row2->rank==$row['sendrank']) echo " <option value='".$row2->rank."' selected>".$row2->membername."</option>\r\n";
  162. else echo " <option value='".$row2->rank."'>".$row2->membername."</option>\r\n";
  163. }
  164. ?>
  165. </select> </td>
  166. </tr>
  167. <tr>
  168. <td bgcolor="#FFFFFF">许可投稿会员组</td>
  169. <td bgcolor="#FFFFFF">
  170. <?php
  171. $dsql->SetQuery("Select * from `#@__member_model`");
  172. $dsql->Execute();
  173. while($row3 = $dsql->GetObject())
  174. {
  175. echo "<label><input name='usertype' class='np' type='radio' value=".$row3->name."> ".$row3->name."</label> \r\n";
  176. }
  177. ?>
  178. <label><input name="usertype" class="np" type="radio" value=""
  179. <?php if($row['usertype']=='') echo " checked='1' "; ?>>
  180. 不限</label></td>
  181. </tr>
  182. <tr>
  183. <td bgcolor="#FFFFFF">会员稿件默认状态</td>
  184. <td bgcolor="#FFFFFF">
  185. <label><input name="arcsta" class="np" type="radio" value="-1" <?php if($row['arcsta']==-1) echo " checked='1' "; ?>>
  186. 未审核</label>
  187. <label><input name="arcsta" class="np" type="radio" value="0" <?php if($row['arcsta']==0) echo " checked='1' "; ?>>
  188. 已审核(自动生成HTML)</label>
  189. <label><input name="arcsta" class="np" type="radio" value="1" <?php if($row['arcsta']==1) echo " checked='1' "; ?>>
  190. 已审核(仅使用动态文档)</label> </td>
  191. </tr>
  192. <tr>
  193. <td bgcolor="#FFFFFF">档案发布程序</td>
  194. <td bgcolor="#FFFFFF"><input name="addcon" type="text" id="addcon" value="<?php echo $row['addcon']; ?>" class="pubinputs"></td>
  195. </tr>
  196. <tr>
  197. <td bgcolor="#FFFFFF">档案修改程序</td>
  198. <td bgcolor="#FFFFFF"><input name="editcon" type="text" id="editcon" value="<?php echo $row['editcon']; ?>" class="pubinputs"></td>
  199. </tr>
  200. <tr>
  201. <td bgcolor="#FFFFFF">档案管理程序</td>
  202. <td bgcolor="#FFFFFF"><input name="mancon" type="text" id="mancon" value="<?php echo $row['mancon']; ?>" class="pubinputs"></td>
  203. </tr>
  204. <tr>
  205. <td bgcolor="#FFFFFF">前台会员发布程序</td>
  206. <td bgcolor="#FFFFFF"><input name="useraddcon" type="text" id="useraddcon" value="<?php echo $row['useraddcon']; ?>" class="pubinputs"></td>
  207. </tr>
  208. <tr>
  209. <td bgcolor="#FFFFFF">前台会员修改程序</td>
  210. <td bgcolor="#FFFFFF"><input name="usereditcon" type="text" id="usereditcon" value="<?php echo $row['usereditcon']; ?>" class="pubinputs"></td>
  211. </tr>
  212. <tr>
  213. <td bgcolor="#FFFFFF">前台会员管理程序</td>
  214. <td bgcolor="#FFFFFF"><input name="usermancon" type="text" id="usermancon" value="<?php echo $row['usermancon']; ?>" class="pubinputs"></td>
  215. </tr>
  216. <tr>
  217. <td bgcolor="#FFFFFF">列表附加字段<br>
  218. <span class="STYLE2" id="help6">用&quot;,&quot;分开,可以在列表模板{dede:list}{/dede:list}中用[field:name/]调用</span></td>
  219. <td bgcolor="#FFFFFF">
  220. <input name="listfields" type="text" id="listfields" size="50" value="<?php echo $row['listfields']; ?>" class="pubinputs" style="width:80%"></td>
  221. </tr>
  222. <tr>
  223. <td bgcolor="#FFFFFF">投稿标题使用名称</td>
  224. <td bgcolor="#FFFFFF">
  225. <input name="titlename" type="text" id="titlename" value="<?php echo $row['titlename']; ?>" class="pubinputs"></td>
  226. </tr>
  227. <tr>
  228. <td bgcolor="#FFFFFF">
  229. 投稿是否使用摘要
  230. <br>
  231. <span class="STYLE2">如果不使用主表(独立模型)缩略图设置同</span>
  232. </td>
  233. <td bgcolor="#FFFFFF">
  234. <label><input name="needdes" type="radio" class="np" value="1"
  235. <?php if($row['needdes']==1) echo " checked='1'"; ?> />
  236. 使用</label>
  237. <label><input name="needdes" type="radio" class="np" value="0"
  238. <?php if($row['needdes']==0) echo " checked='1'"; ?> />
  239. 不使用 </label></td>
  240. </tr>
  241. <tr>
  242. <td bgcolor="#FFFFFF">投稿是否使用缩图</td>
  243. <td bgcolor="#FFFFFF">
  244. <label><input name="needpic" type="radio" class="np" value="1"
  245. <?php if($row['needpic']==1) echo " checked='1'"; ?> />
  246. 使用 </label>
  247. <label><input name="needpic" type="radio" class="np" value="0"
  248. <?php if($row['needpic']==0) echo " checked='1'"; ?> />
  249. 不使用 </label></td>
  250. </tr>
  251. <tr>
  252. <td bgcolor="#FFFFFF">默认栏目ID<br>
  253. <span class="STYLE2" id="help8">与投稿是唯一性结合可以用模型设计自定义表单</span></td>
  254. <td bgcolor="#FFFFFF">
  255. <input name="dfcid" type="text" id="dfcid" value="<?php echo $row['dfcid']; ?>" class="pubinputs" style="width:80px"></td>
  256. </tr>
  257. <tr>
  258. <td bgcolor="#FFFFFF">投稿具有唯一性<br>
  259. <span class="STYLE2" id="help9">如果投稿是唯一会员只能在这个模型对应的栏目中发布单篇文档,其作用相当于自定义表单</span></td>
  260. <td bgcolor="#FFFFFF">
  261. <label><input name="onlyone" type="radio" class="np" value="1"
  262. <?php if($row['onlyone']==1) echo " checked='1'"; ?> />
  263. 是 </label>
  264. <label><input name="onlyone" type="radio" class="np" value="0"
  265. <?php if($row['onlyone']==0) echo " checked='1'"; ?> />
  266. 不是 </label></td>
  267. </tr>
  268. </table>
  269. <table width="98%" id='adset' border="0" align="center" cellpadding="3" cellspacing="1"
  270. style='display:none' class="table maintable table-bordered">
  271. <tr>
  272. <td height="26" bgcolor="#ffffff">模型字段配置(可视化模式)</td>
  273. <td bgcolor="#ffffff">
  274. <button name="fset" type="button" id="fset" onClick="location.href='mychannel_field_add.php?id=<?php echo $id; ?>'" class="btn btn-success btn-sm">添加新字段</button> </td>
  275. </tr>
  276. <tr>
  277. <td colspan='2' bgcolor="#FFFFFF" style="padding:6px">
  278. <table width="100%" border="0" cellpadding="1" cellspacing="1" align="center">
  279. <tr align="center" bgcolor="#FBFCE2" height="26">
  280. <td width="28%">表单提示文字</td>
  281. <td width="18%">数据字段名</td>
  282. <td width="20%">数据类型</td>
  283. <td width="18%">表单类型</td>
  284. <td>维护</td>
  285. </tr>
  286. <?php
  287. if($row['issystem']==-1)
  288. {
  289. ?>
  290. <tr bgcolor="#ffffff" height="26">
  291. <td colspan='5'>aid 和 typeid 是强制使用字段,这里不列出</td>
  292. </tr>
  293. <?php
  294. }
  295. else
  296. {
  297. ?>
  298. <tr bgcolor="#ffffff" height="26">
  299. <td colspan='5'>下面列出的字段是附加表的字段,除此外,它还包含主表dede_archives的所有字段</td>
  300. </tr>
  301. <?php
  302. }
  303. $ds = file(DEDEADMIN."/inc/fieldtype.txt");
  304. foreach($ds as $d){
  305. $dds = explode(',',trim($d));
  306. $fieldtypes[$dds[0]] = $dds[1];
  307. }
  308. $fieldset = stripslashes($row['fieldset']);
  309. $dtp = new DedeTagParse();
  310. $dtp->SetNameSpace("field","<",">");
  311. $dtp->LoadSource($fieldset);
  312. if(is_array($dtp->CTags)){
  313. foreach($dtp->CTags as $ctag)
  314. {
  315. ?> <tr align="center" bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';"
  316. onMouseOut="javascript:this.bgColor='#FFFFFF';" height="26">
  317. <td>
  318. <?php
  319. $itname = $ctag->GetAtt('itemname');
  320. if($itname=='') echo "没指定";
  321. else echo $itname;
  322. ?> </td>
  323. <td>
  324. <?php echo $ctag->GetTagName(); ?> </td>
  325. <td>
  326. <?php
  327. $ft = $ctag->GetAtt('type');
  328. if(isset($fieldtypes[$ft])) echo $fieldtypes[$ft];
  329. else echo "系统专用类型";
  330. ?> </td>
  331. <td>
  332. <?php
  333. $ft = $ctag->GetAtt('autofield');
  334. if($ft=='' || $ft==0) {
  335. echo "固化字段";
  336. }
  337. else {
  338. echo "自动表单";
  339. }
  340. ?>
  341. </td>
  342. <td>
  343. <?php
  344. if($ft==1)
  345. {
  346. ?>
  347. <a
  348. href='mychannel_field_edit.php?id=<?php echo $id; ?>&fname=<?php echo $ctag->GetTagName(); ?>&issystem=<?php echo $row['issystem']; ?>'><img
  349. src='../static/web/img/gtk-edit.png' alt='修改' title='修改' /></a>
  350. <?php if($row['issystem']!=1){ ?>
  351. | <a href='javascript:;'
  352. onClick='javascript:DelNote("mychannel_field_edit.php?id=<?php echo $id; ?>&fname=<?php echo $ctag->GetTagName(); ?>&action=delete");'><img
  353. src='../static/web/img/gtk-del.png' alt='删除' title='删除' /></a>
  354. <?php } ?>
  355. <?php
  356. }
  357. else
  358. {
  359. echo "禁止修改";
  360. }
  361. ?>
  362. </td>
  363. </tr>
  364. <?php
  365. }}
  366. ?>
  367. </table>
  368. </td>
  369. </tr>
  370. <tr>
  371. <td height="26" width="35%" bgcolor="#FFFFFF">
  372. 模型字段配置(文本模式) <br>
  373. 修改配置文本可调整字段顺序,但不会修改字段属性
  374. </td>
  375. <td width="65%" bgcolor="#FFFFFF">
  376. <textarea name="fieldset" style="width:99%;height:300px" rows="10" id="fieldset"><?php echo stripslashes($row['fieldset']); ?></textarea>
  377. </td>
  378. </tr>
  379. </table>
  380. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1"
  381. style='margin-top:6px' class="mb-3">
  382. <tr bgcolor="#f8f8f8">
  383. <td height="36" colspan="2">
  384. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  385. <tr>
  386. <td width="26%"></td>
  387. <td width="15%" class="py-3"><button type="submit" class="btn btn-success">确定</button></td>
  388. <td width="59%" class="py-3"><button type="button" onClick="location='mychannel_main.php';" class="btn btn-success">返回</button></td>
  389. </tr>
  390. </table>
  391. </td>
  392. </tr>
  393. </table>
  394. </form>
  395. <?php
  396. if(!empty($openfield))
  397. {
  398. echo "<script language='javascript'>ShowItem2();</script>";
  399. }
  400. ?>
  401. </body>
  402. </html>