config.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?php
  2. $sdk = array
  3. (
  4. 'url' => '不使用',
  5. 'aliyun' => '阿里云',
  6. );
  7. $method = array
  8. (
  9. 'get' => 'GET',
  10. 'post' => 'POST',
  11. );
  12. $json = array
  13. (
  14. 1 => '是',
  15. 2 => '否',
  16. );
  17. $code_type = array
  18. (
  19. 1 => '全数字',
  20. 2 => '小写字母',
  21. 3 => '大写字母',
  22. 4 => '大小写字母',
  23. 5 => '数字+大小写字母',
  24. );
  25. return array
  26. (
  27. # 表名
  28. 'name' => 'config',
  29. # 显示给用户看的名称
  30. 'lang' => '基本配置',
  31. 'order' => 20,
  32. 'check' => 'key',
  33. # 数据结构
  34. 'struct' => array
  35. (
  36. 'id' => array
  37. (
  38. 'type' => 'int-11',
  39. 'name' => 'ID',
  40. 'default' => '',
  41. 'desc' => '',
  42. 'match' => 'is_numeric',
  43. 'search' => 'order',
  44. //'list' => true,
  45. ),
  46. 'name' => array
  47. (
  48. 'type' => 'varchar-32',
  49. 'name' => '配置名称',
  50. 'default' => '',
  51. 'desc' => '配置名称',
  52. 'match' => 'is_string',
  53. 'update' => 'text',
  54. 'search' => 'fulltext',
  55. 'list' => true,
  56. ),
  57. 'key' => array
  58. (
  59. 'type' => 'varchar-32',
  60. 'name' => '短信标识-发送短信时,使用该标识来读取短信基本配置',
  61. 'default' => '',
  62. 'desc' => '短信标识',
  63. 'match' => 'is_string',
  64. 'update' => 'text',
  65. 'search' => 'fulltext',
  66. 'list' => true,
  67. ),
  68. 'sign' => array
  69. (
  70. 'type' => 'varchar-60',
  71. 'name' => '短信签名',
  72. 'default' => '',
  73. 'desc' => '短信签名',
  74. 'match' => 'is_string',
  75. 'update' => 'text',
  76. ),
  77. 'sdk' => array
  78. (
  79. 'type' => 'varchar-32',
  80. 'name' => '是否调取sdk',
  81. 'default' => 'url',
  82. 'desc' => '是否调取sdk',
  83. 'match' => 'is_string',
  84. 'update' => 'radio',
  85. 'option' => $sdk,
  86. 'control' => 'sdk',
  87. ),
  88. 'appid' => array
  89. (
  90. 'type' => 'varchar-50',
  91. 'name' => 'appid',
  92. 'default' => '',
  93. 'desc' => 'appid',
  94. 'match' => 'option',
  95. 'update' => 'text',
  96. 'show' => 'sdk=aliyun',
  97. ),
  98. 'appsecret' => array
  99. (
  100. 'type' => 'varchar-80',
  101. 'name' => 'appsecret',
  102. 'default' => '',
  103. 'desc' => 'appsecret',
  104. 'match' => 'option',
  105. 'update' => 'text',
  106. 'show' => 'sdk=aliyun',
  107. ),
  108. 'url' => array
  109. (
  110. 'type' => 'varchar-300',
  111. 'name' => '接口地址',
  112. 'default' => '',
  113. 'desc' => '接口地址',
  114. 'match' => 'option',
  115. 'update' => 'text',
  116. 'show' => 'sdk=url',
  117. ),
  118. 'method' => array
  119. (
  120. 'type' => 'varchar-32',
  121. 'name' => '请求方式',
  122. 'default' => 'get',
  123. 'desc' => '请求方式',
  124. 'match' => 'is_string',
  125. 'update' => 'select',
  126. 'option' => $method,
  127. ),
  128. 'json' => array
  129. (
  130. 'type' => 'tinyint-1',
  131. 'name' => '是否进行json编码',
  132. 'default' => '2',
  133. 'desc' => '是否进行json编码',
  134. 'match' => 'is_numeric',
  135. 'update' => 'radio',
  136. 'option' => $json,
  137. ),
  138. 'header' => array
  139. (
  140. 'type' => 'varchar-500',
  141. 'name' => 'header信息-如Authorization:APPCODE e7183e44ba8e4ccaa3d690510923d3fa',
  142. 'default' => '',
  143. 'desc' => 'header信息',
  144. 'match' => 'option',
  145. 'update' => 'textarea',
  146. ),
  147. 'body' => array
  148. (
  149. 'type' => 'varchar-500',
  150. 'name' => 'body信息-如param={code}&phone={mobile}&sign={sign}&skin={skin}',
  151. 'default' => '',
  152. 'desc' => 'body信息',
  153. 'match' => 'option',
  154. 'update' => 'textarea',
  155. ),
  156. 'code_timeout' => array
  157. (
  158. 'type' => 'int-11',
  159. 'name' => '验证码有效期-以秒为单位',
  160. 'default' => '600',
  161. 'desc' => '验证码有效期',
  162. 'match' => 'option',
  163. 'update' => 'text',
  164. ),
  165. 'code_length' => array
  166. (
  167. 'type' => 'int-11',
  168. 'name' => '验证码长度',
  169. 'default' => '4',
  170. 'desc' => '验证码长度',
  171. 'match' => 'option',
  172. 'update' => 'text',
  173. ),
  174. 'code_type' => array
  175. (
  176. 'type' => 'int-11',
  177. 'name' => '验证码类型',
  178. 'default' => '4',
  179. 'desc' => '验证码类型',
  180. 'match' => 'option',
  181. 'update' => 'select',
  182. 'option' => $code_type,
  183. ),
  184. 'code_total' => array
  185. (
  186. 'type' => 'int-11',
  187. 'name' => '一天之内的最大发送次数',
  188. 'default' => '10',
  189. 'desc' => '一天之内的最大发送次数',
  190. 'match' => 'option',
  191. 'update' => 'text',
  192. ),
  193. 'code_time' => array
  194. (
  195. 'type' => 'int-11',
  196. 'name' => '不允许多久之内重复发送-以秒为单位',
  197. 'default' => '60',
  198. 'desc' => '不允许多久之内重复发送',
  199. 'match' => 'option',
  200. 'update' => 'text',
  201. ),
  202. 'state' => array
  203. (
  204. 'type' => 'tinyint-1',
  205. 'name' => '状态',
  206. 'default' => '1',
  207. 'desc' => '请选择状态',
  208. 'match' => 'is_numeric',
  209. ),
  210. 'cdate' => array
  211. (
  212. 'type' => 'int-11',
  213. 'name' => '录入时间',
  214. 'match' => array('is_numeric', time()),
  215. 'desc' => '',
  216. # 只有insert时才生效
  217. 'insert' => true,
  218. 'search' => 'date',
  219. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  220. ),
  221. ),
  222. # 管理功能
  223. 'manage' => array
  224. (
  225. # 列表
  226. 'list_button' => array
  227. (
  228. 'list' => array('模板', '"skin&project=sms&search_option_config_id={id}&oper_parent=config&oper_project=sms"'),
  229. ),
  230. ),
  231. );