config.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?php
  2. $home_top_type = array
  3. (
  4. 1 => '显示',
  5. 2 => '不显示',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'config',
  11. # 显示给用户看的名称
  12. 'lang' => '网站基础信息',
  13. 'order' => -10,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => '平台ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. ),
  25. 'name' => array
  26. (
  27. 'type' => 'varchar-32',
  28. 'name' => '网站名称',
  29. 'default' => '',
  30. 'desc' => '请输入网站名称',
  31. 'match' => 'is_string',
  32. 'update' => 'text',
  33. ),
  34. 'desc' => array
  35. (
  36. 'type' => 'varchar-2000',
  37. 'name' => '网站介绍',
  38. 'default' => '',
  39. 'desc' => '网站介绍',
  40. 'match' => 'is_string',
  41. 'update' => 'textarea',
  42. ),
  43. 'logo' => array
  44. (
  45. 'type' => 'varchar-150',
  46. 'name' => '网站LOGO',
  47. 'default' => '',
  48. 'desc' => '平台LOGO',
  49. 'match' => 'option',
  50. 'update' => 'image',
  51. 'key' => '1',
  52. 'place' => '204*59',
  53. ),
  54. 'phone_name' => array
  55. (
  56. 'type' => 'varchar-100',
  57. 'name' => '客服电话名称-如联系我们',
  58. 'default' => '',
  59. 'desc' => '客服电话名称',
  60. 'match' => 'option',
  61. 'update' => 'text',
  62. ),
  63. 'phone' => array
  64. (
  65. 'type' => 'varchar-100',
  66. 'name' => '客服电话',
  67. 'default' => '',
  68. 'desc' => '请输入客服电话',
  69. 'match' => 'option',
  70. 'update' => 'text',
  71. ),
  72. 'email_name' => array
  73. (
  74. 'type' => 'varchar-100',
  75. 'name' => '联系邮箱名称-如联系邮箱',
  76. 'default' => '',
  77. 'desc' => '联系邮箱名称',
  78. 'match' => 'option',
  79. 'update' => 'text',
  80. ),
  81. 'email' => array
  82. (
  83. 'type' => 'varchar-100',
  84. 'name' => '联系邮箱',
  85. 'default' => '',
  86. 'desc' => '请输入联系邮箱',
  87. 'match' => 'option',
  88. 'update' => 'text',
  89. ),
  90. 'facebook' => array
  91. (
  92. 'type' => 'varchar-1000',
  93. 'name' => 'Facebook链接',
  94. 'default' => '',
  95. 'desc' => 'facebook链接',
  96. 'match' => 'option',
  97. 'update' => 'text',
  98. ),
  99. 'twitter' => array
  100. (
  101. 'type' => 'varchar-1000',
  102. 'name' => 'Twitter链接',
  103. 'default' => '',
  104. 'desc' => 'Twitter链接',
  105. 'match' => 'option',
  106. 'update' => 'text',
  107. ),
  108. 'linkedin' => array
  109. (
  110. 'type' => 'varchar-1000',
  111. 'name' => 'LinkedIn链接',
  112. 'default' => '',
  113. 'desc' => 'LinkedIn链接',
  114. 'match' => 'option',
  115. 'update' => 'text',
  116. ),
  117. 'instagram' => array
  118. (
  119. 'type' => 'varchar-1000',
  120. 'name' => 'Instagram链接',
  121. 'default' => '',
  122. 'desc' => 'Instagram链接',
  123. 'match' => 'option',
  124. 'update' => 'text',
  125. ),
  126. 'company_name' => array
  127. (
  128. 'type' => 'varchar-100',
  129. 'name' => '关于我们名称-如关于我们',
  130. 'default' => '',
  131. 'desc' => '关于我们名称',
  132. 'match' => 'option',
  133. 'update' => 'text',
  134. ),
  135. 'service_name' => array
  136. (
  137. 'type' => 'varchar-100',
  138. 'name' => '公司业务名称-如公司业务',
  139. 'default' => '',
  140. 'desc' => '公司业务名称',
  141. 'match' => 'option',
  142. 'update' => 'text',
  143. ),
  144. 'foot' => array
  145. (
  146. 'type' => 'text-255',
  147. 'name' => '底部信息',
  148. 'default' => '',
  149. 'desc' => '底部信息',
  150. 'match' => 'option',
  151. 'update' => 'editor',
  152. 'key' => '1',
  153. ),
  154. 'state' => array
  155. (
  156. 'type' => 'tinyint-1',
  157. 'name' => '状态',
  158. 'default' => '1',
  159. 'desc' => '请选择状态',
  160. 'match' => 'is_numeric',
  161. ),
  162. 'cdate' => array
  163. (
  164. 'type' => 'int-11',
  165. 'name' => '录入时间',
  166. 'match' => array('is_numeric', time()),
  167. 'desc' => '',
  168. # 只有insert时才生效
  169. 'insert' => true,
  170. ),
  171. ),
  172. 'default' => array
  173. (
  174. 'col' => 'name,cdate',
  175. 'value' => array
  176. (
  177. '"SPAC工厂",' . time(),
  178. ),
  179. ),
  180. 'manage' => array
  181. (
  182. 'lang' => 'name,desc,phone_name,email_name,company_name,service_name',
  183. # 后台管理不要列表页
  184. 'list' => 'update',
  185. ),
  186. );