国内流行的内容管理系统(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.

62 lines
3.1KB

  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. <link href="css/base.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body background='images/allbg.gif' leftmargin='8' >
  9. <table width="98%" border="0" cellpadding="0" cellspacing="1" bgcolor="#D6D6D6" align="center">
  10. <form name="form1" action="content_att.php" method="post">
  11. <input type="hidden" name="dopost" value="save" />
  12. <tr>
  13. <td height="28" colspan="3" background='images/tbg.gif' style="padding-left:10px;"><strong>文档自定义属性管理</strong>
  14. </td>
  15. </tr>
  16. <tr>
  17. <td height="34" colspan="3" bgcolor="#FFFFFF" style="line-height:20px;">
  18.   <b>自定义属性的意义和使用说明:</b><br>
  19.   在以往的版本中,网站主页、频道封面的设计,都只能单调的用 arclist 标记把某栏目最新或按特定排序方式的文档无选择的读出来,这样做法存在很大的不足,例如,我希望在最顶部的地方显示我想要的文档,在以往的版本中是无法做到的,但使用自定义属性之后,只要给arclist 标记加上 att='自定义属性的ID' 的属性,然后在发布的时候对适合的文档选择专门的属性,那么使用arclist的地方就会按您的意愿显示指定的文档。<br>
  20.   <b>注意事项:</b>这个版本中att对应的字段是SET类型字段,因此为了数据安全起见不允许用户增加其它类型,但调用时允许使用组合条件,如:att='c,p'表示推荐图片新闻。 </td>
  21. </tr>
  22. <tr bgcolor="#FBFCE2" align="center">
  23. <td width="15%" height="24"><b>ID</b></td>
  24. <td width="15%" height="24"><b>排序</b></td>
  25. <td width="70%" align="left"><b>属性名称</b></td>
  26. </tr>
  27. <?php
  28. $dsql->SetQuery(" Select * From `#@__arcatt` order by sortid asc ");
  29. $dsql->Execute();
  30. $k=0;
  31. while($row = $dsql->GetObject())
  32. {
  33. $k++;
  34. ?>
  35. <input type="hidden" name="att_<?php echo $k?>" value="<?php echo $row->att?>" />
  36. <tr bgcolor="#FFFFFF" height="24">
  37. <td align="center">
  38. <?php echo $row->att; ?>
  39. </td>
  40. <td style="padding:3px;">
  41. <input name="sortid_<?php echo $k?>" value="<?php echo $row->sortid; ?>" type="text" id="sortid_<?php echo $k?>" class='pubinputs' style='width:50%' />
  42. </td>
  43. <td style="padding-left:5px;">
  44. <input name="attname_<?php echo $k?>" value="<?php echo $row->attname; ?>" type="text" id="attname_<?php echo $k?>" size="30" class='pubinputs' />
  45. </td>
  46. </tr>
  47. <?php
  48. }
  49. ?>
  50. <input type="hidden" name="idend" value="<?php echo $k?>" />
  51. <tr>
  52. <td height="24" colspan="3" bgcolor="#F9FCEF">&nbsp;</td>
  53. </tr>
  54. <tr>
  55. <td height="34" colspan="3" align="center" bgcolor="#FFFFFF">
  56. <input name="imageField" type="image" src="images/button_ok.gif" class="np" width="60" height="22" border="0" />
  57. </td>
  58. </tr>
  59. </form>
  60. </table>
  61. </body>
  62. </html>