version.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <?php
  2. $up = array
  3. (
  4. 1 => '是',
  5. 2 => '否',
  6. );
  7. $source_type = array (
  8. 'ios' => 'ios',
  9. 'android' => 'android',
  10. );
  11. $vip = array
  12. (
  13. 1 => '显示',
  14. 2 => '不显示',
  15. );
  16. $button = array
  17. (
  18. 1 => '显示',
  19. 2 => '不显示',
  20. );
  21. $update = array
  22. (
  23. 1 => '显示',
  24. 2 => '不显示',
  25. );
  26. $login = array
  27. (
  28. 1 => '是',
  29. 2 => '否',
  30. );
  31. $anonymous = array
  32. (
  33. 1 => '是',
  34. 2 => '否',
  35. );
  36. return array
  37. (
  38. # 表名
  39. 'name' => 'version',
  40. # 显示给用户看的名称
  41. 'lang' => '版本管理',
  42. # 后台菜单排序
  43. 'order' => 9,
  44. # 数据结构
  45. 'struct' => array
  46. (
  47. 'id' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => 'ID',
  51. 'default' => '',
  52. 'desc' => '',
  53. 'match' => 'is_numeric',
  54. 'search' => 'order',
  55. //'list' => true,
  56. 'order' => 'desc',
  57. ),
  58. 'source_type' => array
  59. (
  60. 'type' => 'varchar-32',
  61. 'name' => '平台',
  62. 'default' => '1',
  63. 'desc' => '平台',
  64. 'match' => 'is_string',
  65. 'update' => 'select',
  66. 'search' => 'select',
  67. 'option' => $source_type,
  68. 'list' => true,
  69. ),
  70. 'appname' => array
  71. (
  72. 'type' => 'varchar-50',
  73. 'name' => 'app名称',
  74. 'default' => '',
  75. 'desc' => 'app名称',
  76. 'match' => 'is_string',
  77. 'update' => 'text',
  78. //'list' => true,
  79. ),
  80. 'name' => array
  81. (
  82. 'type' => 'varchar-32',
  83. 'name' => '版本名称',
  84. 'default' => '',
  85. 'desc' => '请输入名称',
  86. 'match' => 'is_string',
  87. 'update' => 'text',
  88. 'search' => 'fulltext',
  89. 'list' => true,
  90. ),
  91. 'code' => array
  92. (
  93. 'type' => 'int-11',
  94. 'name' => '版本号-只能填写数字',
  95. 'default' => '',
  96. 'desc' => '版本号',
  97. 'match' => 'is_numeric',
  98. 'update' => 'text',
  99. 'search' => 'fulltext',
  100. 'order' => 'desc',
  101. 'list' => true,
  102. ),
  103. 'desc' => array
  104. (
  105. 'type' => 'varchar-500',
  106. 'name' => '版本描述',
  107. 'default' => '',
  108. 'desc' => '版本描述',
  109. 'match' => 'is_string',
  110. 'update' => 'textarea',
  111. ),
  112. 'up' => array
  113. (
  114. 'type' => 'int-11',
  115. 'name' => '是否强制升级',
  116. 'default' => '2',
  117. 'desc' => '是否强制升级',
  118. 'match' => 'is_numeric',
  119. 'update' => 'select',
  120. 'option' => $up,
  121. ),
  122. 'link' => array
  123. (
  124. 'type' => 'varchar-400',
  125. 'name' => '下载链接',
  126. 'default' => '',
  127. 'desc' => '下载链接',
  128. 'match' => 'is_string',
  129. 'update' => 'text',
  130. ),
  131. 'file' => array
  132. (
  133. 'type' => 'varchar-150',
  134. 'name' => '上传APP文件',
  135. 'default' => '',
  136. 'desc' => '上传APP文件',
  137. 'match' => 'option',
  138. 'update' => 'upload',
  139. 'key' => '7',
  140. 'upload' => 'qiniu',
  141. 'large' => true,
  142. //不覆盖原文件,生成新文件
  143. 'cover' => 2,
  144. ),
  145. 'updates' => array
  146. (
  147. 'type' => 'int-11',
  148. 'name' => '是否显示更新提醒',
  149. 'default' => '2',
  150. 'desc' => '是否显示更新提醒',
  151. 'match' => 'is_numeric',
  152. 'update' => 'radio',
  153. 'option' => $update,
  154. ),
  155. 'login' => array
  156. (
  157. 'type' => 'int-11',
  158. 'name' => '是否强制登录',
  159. 'default' => '2',
  160. 'desc' => '是否强制登录',
  161. 'match' => 'is_numeric',
  162. 'update' => 'radio',
  163. 'option' => $login,
  164. ),
  165. 'anonymous' => array
  166. (
  167. 'type' => 'int-11',
  168. 'name' => '是否匿名登录',
  169. 'default' => '2',
  170. 'desc' => '是否匿名登录',
  171. 'match' => 'is_numeric',
  172. 'update' => 'radio',
  173. 'option' => $anonymous,
  174. ),
  175. 'vip' => array
  176. (
  177. 'type' => 'int-11',
  178. 'name' => '会员-是否显示会员信息和会员按钮',
  179. 'default' => '2',
  180. 'desc' => '会员',
  181. 'match' => 'is_numeric',
  182. 'update' => 'radio',
  183. 'option' => $vip,
  184. ),
  185. 'button' => array
  186. (
  187. 'type' => 'int-11',
  188. 'name' => '兑换阅读按钮-是否显示兑换阅读按钮',
  189. 'default' => '2',
  190. 'desc' => '兑换阅读按钮',
  191. 'match' => 'is_numeric',
  192. 'update' => 'radio',
  193. 'option' => $button,
  194. ),
  195. 'state' => array
  196. (
  197. 'type' => 'tinyint-1',
  198. 'name' => '状态',
  199. 'default' => '1',
  200. 'desc' => '请选择状态',
  201. 'match' => 'is_numeric',
  202. ),
  203. 'cdate' => array
  204. (
  205. 'type' => 'int-11',
  206. 'name' => '录入时间',
  207. 'match' => array('is_numeric', time()),
  208. 'desc' => '',
  209. # 只有insert时才生效
  210. 'insert' => true,
  211. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  212. ),
  213. ),
  214. 'request' => array
  215. (
  216. 'getOne' => array
  217. (
  218. # 匹配的正则或函数 选填项
  219. 'option' => array
  220. (
  221. 'source_type' => 'yes',
  222. 'code' => 'yes',
  223. 'name' => 'yes',
  224. 'state' => 1,
  225. ),
  226. 'type' => 'one',
  227. 'order' => array('code' => 'desc', 'cdate' => 'desc'),
  228. 'col' => '*',
  229. ),
  230. ),
  231. );