setting.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'setting',
  6. # 显示给用户看的名称
  7. 'lang' => '站点信息配置',
  8. 'order' => 10,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => '网站ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. ),
  20. 'hr1' => array
  21. (
  22. 'name' => '基本信息',
  23. 'class' => '',//本项必须填写
  24. 'attr' => '',
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-32',
  29. 'name' => '网站名称',
  30. 'default' => '',
  31. 'desc' => '请输入网站名称',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. ),
  35. 'info' => array
  36. (
  37. 'type' => 'text-255',
  38. 'name' => '网站介绍',
  39. 'default' => '',
  40. 'desc' => '请输入网站介绍',
  41. 'match' => 'option',
  42. 'update' => 'textarea',
  43. ),
  44. 'hr3' => array
  45. (
  46. 'name' => '版权与介绍',
  47. 'class' => '',//本项必须填写
  48. 'attr' => '',
  49. ),
  50. 'copyright' => array
  51. (
  52. 'type' => 'varchar-200',
  53. 'name' => '版权信息',
  54. 'default' => '',
  55. 'desc' => '请输入版权信息',
  56. 'match' => 'is_string',
  57. 'update' => 'textarea',
  58. ),
  59. 'icp' => array
  60. (
  61. 'type' => 'varchar-200',
  62. 'name' => 'icp备案信息-填写别的信息也可以的',
  63. 'default' => '',
  64. 'desc' => '请输入icp备案信息',
  65. 'match' => 'is_string',
  66. 'update' => 'textarea',
  67. ),
  68. 'code' => array
  69. (
  70. 'type' => 'text-255',
  71. 'name' => '尾部代码-一般用于填写统计代码',
  72. 'default' => '',
  73. 'desc' => '请输入尾部代码',
  74. 'match' => 'option',
  75. 'update' => 'textarea',
  76. ),
  77. 'cdate' => array
  78. (
  79. 'type' => 'int-11',
  80. 'name' => '录入时间',
  81. 'match' => time(),
  82. 'desc' => '',
  83. ),
  84. ),
  85. 'default' => array
  86. (
  87. 'col' => 'name,info,copyright,icp,cdate',
  88. 'value' => array
  89. (
  90. '"Vogue时尚网","Vogue时尚网","Made With By Dever","京ICP备15006344号",' . time(),
  91. ),
  92. ),
  93. 'manage' => array
  94. (
  95. # 后台管理不要列表页
  96. 'list' => 'update',
  97. ),
  98. );