info.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <?php
  2. $status = array
  3. (
  4. 1 => '未开始',
  5. 2 => '报名中',
  6. 3 => '名单公示',
  7. 4 => '大赛回顾',
  8. );
  9. return array
  10. (
  11. # 表名
  12. 'name' => 'info',
  13. # 显示给用户看的名称
  14. 'lang' => '活动配置',
  15. # 后台菜单排序
  16. 'order' => -10,
  17. # 数据结构
  18. 'struct' => array
  19. (
  20. 'id' => array
  21. (
  22. 'type' => 'int-11',
  23. 'name' => 'ID',
  24. 'default' => '',
  25. 'desc' => '',
  26. 'match' => 'is_numeric',
  27. 'search' => 'order',
  28. 'list' => true,
  29. 'order' => 'asc',
  30. ),
  31. 'name' => array
  32. (
  33. 'type' => 'varchar-200',
  34. 'name' => '活动名称',
  35. 'default' => '',
  36. 'desc' => '活动名称',
  37. 'match' => 'is_string',
  38. 'update' => 'text',
  39. 'search' => 'fulltext',
  40. 'list' => true,
  41. ),
  42. 'video' => array
  43. (
  44. 'type' => 'varchar-800',
  45. 'name' => '封面视频-可以为空,视频格式mp4,上传大小不能超过4G,比例要求宽度不超过960px,高度不超过1200px',
  46. 'default' => '',
  47. 'desc' => '封面视频',
  48. 'match' => 'option',
  49. 'update' => 'video',
  50. 'key' => '3',
  51. ),
  52. 'pic' => array
  53. (
  54. 'type' => 'text-255',
  55. 'name' => '封面图-图片比例要求宽度不超过960px,高度不超过1200px',
  56. 'default' => '',
  57. 'desc' => '封面图',
  58. 'match' => 'option',
  59. 'update' => 'images',
  60. 'key' => '1',
  61. ),
  62. 'desc' => array
  63. (
  64. 'type' => 'text-255',
  65. 'name' => '活动介绍',
  66. 'default' => '',
  67. 'desc' => '活动介绍',
  68. 'match' => 'option',
  69. 'update' => 'editor',
  70. 'key' => 1,
  71. //'list' => true,
  72. ),
  73. 'content' => array
  74. (
  75. 'type' => 'text-255',
  76. 'name' => '活动内容',
  77. 'default' => '',
  78. 'desc' => '活动内容',
  79. 'match' => 'option',
  80. 'update' => 'editor',
  81. 'key' => 1,
  82. //'list' => true,
  83. ),
  84. 'canyu' => array
  85. (
  86. 'type' => 'text-255',
  87. 'name' => '参与方式',
  88. 'default' => '',
  89. 'desc' => '参与方式',
  90. 'match' => 'option',
  91. 'update' => 'editor',
  92. 'key' => 1,
  93. //'list' => true,
  94. ),
  95. 'baoming_start' => array
  96. (
  97. 'type' => 'int-11',
  98. 'name' => '报名开始时间',
  99. 'default' => '',
  100. 'desc' => '报名开始时间',
  101. 'match' => 'option',
  102. 'update' => 'time',
  103. 'callback' => 'maketime',
  104. 'tab' => 1,
  105. ),
  106. 'baoming_end' => array
  107. (
  108. 'type' => 'int-11',
  109. 'name' => '报名结束时间',
  110. 'default' => '',
  111. 'desc' => '报名结束时间',
  112. 'match' => 'option',
  113. 'update' => 'time',
  114. 'callback' => 'maketime',
  115. 'tab' => 1,
  116. ),
  117. 'baoming_txt_top' => array
  118. (
  119. 'type' => 'varchar-2000',
  120. 'name' => '报名时顶部说明',
  121. 'default' => '',
  122. 'desc' => '报名时顶部说明',
  123. 'match' => 'option',
  124. 'update' => 'textarea',
  125. 'tab' => 1,
  126. ),
  127. 'baoming_txt_xieyi' => array
  128. (
  129. 'type' => 'varchar-2000',
  130. 'name' => '报名时底部协议',
  131. 'default' => '',
  132. 'desc' => '报名时底部协议',
  133. 'match' => 'option',
  134. 'update' => 'textarea',
  135. 'tab' => 1,
  136. ),
  137. 'baoming_txt_end' => array
  138. (
  139. 'type' => 'varchar-2000',
  140. 'name' => '报名结束介绍',
  141. 'default' => '',
  142. 'desc' => '报名结束介绍',
  143. 'match' => 'option',
  144. 'update' => 'textarea',
  145. 'tab' => 1,
  146. ),
  147. 'huigu_txt' => array
  148. (
  149. 'type' => 'text-255',
  150. 'name' => '回顾介绍',
  151. 'default' => '',
  152. 'desc' => '回顾介绍',
  153. 'match' => 'option',
  154. 'update' => 'editor',
  155. 'key' => 1,
  156. 'tab' => 2,
  157. ),
  158. 'huigu_video_name' => array
  159. (
  160. 'type' => 'varchar-800',
  161. 'name' => '回顾视频标题',
  162. 'default' => '',
  163. 'desc' => '回顾视频标题',
  164. 'match' => 'is_string',
  165. 'update' => 'text',
  166. ),
  167. 'huigu_video' => array
  168. (
  169. 'type' => 'varchar-800',
  170. 'name' => '回顾视频-视频格式mp4,上传大小不能超过4G,比例要求宽度不超过960px,高度不超过1200px',
  171. 'default' => '',
  172. 'desc' => '回顾视频',
  173. 'match' => 'is_string',
  174. 'update' => 'video',
  175. 'key' => '3',
  176. ),
  177. 'status' => array
  178. (
  179. 'type' => 'tinyint-1',
  180. 'name' => '状态',
  181. 'default' => '1',
  182. 'desc' => '状态',
  183. 'match' => 'is_numeric',
  184. 'option' => $status,
  185. 'update' => 'radio',
  186. 'list' => true,
  187. 'edit' => true,
  188. ),
  189. 'state' => array
  190. (
  191. 'type' => 'tinyint-1',
  192. 'name' => '状态',
  193. 'default' => '1',
  194. 'desc' => '请选择状态',
  195. 'match' => 'is_numeric',
  196. ),
  197. 'cdate' => array
  198. (
  199. 'type' => 'int-11',
  200. 'name' => '创建时间',
  201. 'match' => array('is_numeric', time()),
  202. 'desc' => '',
  203. # 只有insert时才生效
  204. 'insert' => true,
  205. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  206. ),
  207. ),
  208. 'default' => array
  209. (
  210. 'col' => 'id,name,state,cdate',
  211. 'value' => array
  212. (
  213. '1,"默认活动", 1,' . DEVER_TIME,
  214. ),
  215. ),
  216. 'manage' => array
  217. (
  218. 'tab' => array('基础信息', '报名设置', '活动回顾'),
  219. 'delete' => false,
  220. 'list' => 'update',
  221. ),
  222. 'request' => array
  223. (
  224. ),
  225. );