content.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. <?php
  2. /**
  3. * user
  4. */
  5. # 定义几个常用的选项
  6. $option = array
  7. (
  8. 1 => '开启',
  9. 2 => '关闭',
  10. );
  11. $type = array
  12. (
  13. 1 => '文字',
  14. 2 => '外链图文',
  15. 3 => '内链图文',
  16. 4 => '语音',
  17. 5 => '视频',
  18. 6 => '图片',
  19. //7 => '音乐',
  20. //11 => '站内文章',
  21. );
  22. # 增加站内文章
  23. $thead = function()
  24. {
  25. };
  26. # 是否临时消息
  27. $temp = array
  28. (
  29. 1 => '临时',
  30. 2 => '永久',
  31. );
  32. return array
  33. (
  34. # 表名
  35. 'name' => 'content',
  36. # 显示给用户看的名称
  37. 'lang' => '消息内容管理',
  38. 'desc' => '管理群发消息和关键词自动回复消息,群发消息时可以选择此处的消息',
  39. 'order' => 19,
  40. 'end' => array
  41. (
  42. # 新增素材到微信
  43. 'insert' => 'weixin/media.update',
  44. # 新增素材到微信
  45. 'update' => 'weixin/media.update',
  46. ),
  47. # 数据结构
  48. 'struct' => array
  49. (
  50. 'id' => array
  51. (
  52. 'type' => 'int-11',
  53. 'name' => 'ID',
  54. 'default' => '',
  55. 'desc' => '',
  56. 'match' => 'is_numeric',
  57. 'search' => 'order',
  58. 'list' => true,
  59. ),
  60. 'site' => array
  61. (
  62. 'type' => 'int-11',
  63. 'name' => '站点',
  64. 'default' => '',
  65. 'desc' => '请输入站点',
  66. 'match' => 'is_numeric',
  67. ),
  68. 'name' => array
  69. (
  70. 'type' => 'varchar-32',
  71. 'name' => '消息名',
  72. 'default' => '',
  73. 'desc' => '请输入消息名',
  74. 'match' => 'is_string',
  75. 'search' => 'fulltext',
  76. 'update' => 'text',
  77. 'list' => true,
  78. ),
  79. 'type' => array
  80. (
  81. 'type' => 'tinyint-3',
  82. 'name' => '类型',
  83. 'default' => '1',
  84. 'desc' => '请选择类型',
  85. 'match' => 'is_numeric',
  86. 'option' => $type,
  87. 'update' => 'radio',
  88. 'list' => true,
  89. # 开启显示控制,可以控制下边的表单
  90. 'show' => 'type',
  91. ),
  92. 'temp' => array
  93. (
  94. 'type' => 'tinyint-1',
  95. 'name' => '是否临时素材(临时素材只保留三天,永久素材有一定的上限:图文5000、其他1000)',
  96. 'default' => '2',
  97. 'desc' => '请选择是否临时素材',
  98. 'match' => 'is_numeric',
  99. 'option' => $temp,
  100. 'update' => 'radio',
  101. //'list' => true,
  102. ),
  103. 'keywords' => array
  104. (
  105. 'type' => 'varchar-255',
  106. 'name' => '关键词(选填,多个关键字换行隔开,如填写则根据关键词给关注用户发送相关消息)',
  107. 'default' => '',
  108. 'desc' => '请输入关键词',
  109. 'match' => 'option',
  110. 'search' => 'order,fulltext',
  111. 'update' => 'textarea',
  112. //'list' => true,
  113. //'modal' => '查看详情',
  114. 'show' => array('type_1', 'type_2', 'type_4', 'type_5', 'type_6', 'type_7'),
  115. ),
  116. 'title' => array
  117. (
  118. 'type' => 'varchar-50',
  119. 'name' => '标题',
  120. 'default' => '',
  121. 'desc' => '请输入标题',
  122. 'match' => 'is_string',
  123. 'search' => 'fulltext',
  124. 'update' => 'text',
  125. //'list' => true,
  126. 'show' => array('type_5', 'type_7'),
  127. ),
  128. 'music_url' => array
  129. (
  130. 'type' => 'varchar-150',
  131. 'name' => '普通音乐链接',
  132. 'default' => '',
  133. 'desc' => '请输入普通音乐链接',
  134. 'match' => 'is_string',
  135. 'search' => 'fulltext',
  136. 'update' => 'text',
  137. 'show' => array('type_7'),
  138. ),
  139. 'music_hq_url' => array
  140. (
  141. 'type' => 'varchar-150',
  142. 'name' => '高质量音乐链接(wifi环境使用)',
  143. 'default' => '',
  144. 'desc' => '请输入高质量音乐链接',
  145. 'match' => 'is_string',
  146. 'search' => 'fulltext',
  147. 'update' => 'text',
  148. 'show' => array('type_7'),
  149. ),
  150. 'pic' => array
  151. (
  152. 'type' => 'varchar-150',
  153. 'name' => '图片(大小限制:1M)',
  154. 'default' => '',
  155. 'desc' => '请上传图片',
  156. 'match' => 'is_string',
  157. 'update' => 'image',
  158. 'key' => '1',
  159. 'place' => '500',
  160. 'show' => array('type_6', 'type_7'),
  161. ),
  162. 'mp3' => array
  163. (
  164. 'type' => 'varchar-150',
  165. 'name' => '语音(支持mp3等语音格式,大小限制:2M)',
  166. 'default' => '',
  167. 'desc' => '请上传语音',
  168. 'match' => 'is_string',
  169. 'update' => 'image',
  170. 'key' => '1',
  171. 'show' => array('type_4'),
  172. ),
  173. 'mp4' => array
  174. (
  175. 'type' => 'varchar-150',
  176. 'name' => '视频(限制大小:10MB)',
  177. 'default' => '',
  178. 'desc' => '请上传视频',
  179. 'match' => 'is_string',
  180. 'update' => 'image',
  181. 'key' => '1',
  182. 'show' => array('type_5'),
  183. ),
  184. 'text' => array
  185. (
  186. 'type' => 'varchar-150',
  187. 'name' => '回复文字',
  188. 'default' => '',
  189. 'desc' => '请输入回复文字',
  190. 'match' => 'is_string',
  191. 'update' => 'textarea',
  192. //'list' => true,
  193. 'show' => array('type_1'),
  194. ),
  195. 'info' => array
  196. (
  197. 'type' => 'varchar-150',
  198. 'name' => '简介',
  199. 'default' => '',
  200. 'desc' => '请输入简介',
  201. 'match' => 'is_string',
  202. 'update' => 'textarea',
  203. //'list' => true,
  204. 'show' => array('type_5', 'type_7'),
  205. ),
  206. 'content_2' => array
  207. (
  208. 'type' => 'text-255',
  209. 'name' => '外链图文',
  210. 'default' => '',
  211. 'desc' => '请输入外链图文',
  212. 'match' => 'is_string',
  213. 'update' => array
  214. (
  215. array
  216. (
  217. 'col' => 'title',
  218. 'name' => '标题',
  219. 'default' => '',
  220. 'desc' => '请输入标题',
  221. 'match' => 'is_string',
  222. 'update' => 'text',
  223. ),
  224. array
  225. (
  226. 'col' => 'pic',
  227. 'name' => '封面图(支持JPG、PNG格式,第1条请传大图720*400,其余请传小图400*400)',
  228. 'default' => '',
  229. 'desc' => '请上传封面',
  230. 'match' => 'is_string',
  231. 'update' => 'image',
  232. 'key' => '1',
  233. 'place' => '720',
  234. ),
  235. array
  236. (
  237. 'col' => 'link',
  238. 'name' => '原文链接',
  239. 'default' => '',
  240. 'desc' => '请输入原文链接',
  241. 'match' => 'is_string',
  242. 'update' => 'text',
  243. ),
  244. array
  245. (
  246. 'col' => 'info',
  247. 'name' => '摘要',
  248. 'default' => '',
  249. 'desc' => '请输入摘要',
  250. 'match' => 'is_string',
  251. 'update' => 'textarea',
  252. ),
  253. ),
  254. 'show' => array('type_2'),
  255. ),
  256. 'content_3' => array
  257. (
  258. 'type' => 'text-255',
  259. 'name' => '内链图文',
  260. 'default' => '',
  261. 'desc' => '请输入多图文',
  262. 'match' => 'is_string',
  263. 'update' => array
  264. (
  265. array
  266. (
  267. 'col' => 'title',
  268. 'name' => '标题',
  269. 'default' => '',
  270. 'desc' => '请输入标题',
  271. 'match' => 'is_string',
  272. 'update' => 'text',
  273. ),
  274. array
  275. (
  276. 'col' => 'pic',
  277. 'name' => '封面图(支持JPG、PNG格式,第1条请传大图720*400,其余请传小图400*400)',
  278. 'default' => '',
  279. 'desc' => '请上传封面',
  280. 'match' => 'is_string',
  281. 'update' => 'image',
  282. 'key' => '1',
  283. 'place' => '720',
  284. ),
  285. array
  286. (
  287. 'col' => 'desc',
  288. 'name' => '正文(选填)',
  289. 'default' => '',
  290. 'desc' => '请输入正文',
  291. 'match' => 'is_string',
  292. 'update' => 'editor',
  293. ),
  294. array
  295. (
  296. 'col' => 'link',
  297. 'name' => '原文链接(选填)',
  298. 'default' => '',
  299. 'desc' => '请输入原文链接',
  300. 'match' => 'is_string',
  301. 'update' => 'text',
  302. ),
  303. array
  304. (
  305. 'col' => 'author',
  306. 'name' => '作者(选填)',
  307. 'default' => '',
  308. 'desc' => '请输入作者',
  309. 'match' => 'option',
  310. 'update' => 'text',
  311. ),
  312. array
  313. (
  314. 'col' => 'info',
  315. 'name' => '摘要(选填)',
  316. 'default' => '',
  317. 'desc' => '请输入摘要',
  318. 'match' => 'is_string',
  319. 'update' => 'textarea',
  320. ),
  321. ),
  322. 'show' => array('type_3'),
  323. ),
  324. 'state' => array
  325. (
  326. 'type' => 'tinyint-1',
  327. 'name' => '状态',
  328. 'default' => '1',
  329. 'desc' => '请选择状态',
  330. 'match' => array('is_numeric', 1),
  331. 'option' => $option,
  332. //'update' => 'radio',
  333. 'list' => true,
  334. ),
  335. 'cdate' => array
  336. (
  337. 'type' => 'int-11',
  338. 'name' => '录入时间',
  339. 'match' => array('is_numeric', time()),
  340. 'desc' => '',
  341. # 只有insert时才生效
  342. 'insert' => true,
  343. ),
  344. ),
  345. # 更新表结构
  346. 'alter' => array
  347. (
  348. 1 => array
  349. (
  350. array('add', 'text', 'text', 'varchar-150 回复文字'),
  351. ),
  352. 'version' => 1,
  353. ),
  354. 'manage' => array
  355. (
  356. 'desc' => '外链图文:无需输入正文内容,一般为直接链接到站内的某个文章,不会发布到微信公众平台<br />内链图文:必须输入正文内容,直接发布到微信公众平台。正文内容请严格遵守微信正文发布规则。<br />其余内容除文字外,均会将素材传到微信公众平台。请确认您的可上传素材上限足够使用。本系统会为您保留所有素材。同时,每次更新都会将素材传到微信公众平台。<br />请到本系统的素材管理中查看您上传的所有素材,以确认素材是否可以删除。',
  357. ),
  358. 'auth' => 'site',
  359. # request 请求接口定义
  360. 'request' => array
  361. (
  362. 'main' => array
  363. (
  364. 'where' => array
  365. (
  366. 'state' => 1,
  367. 'site' => 'yes',
  368. ),
  369. 'type' => 'all',
  370. 'order' => array('id', 'desc'),
  371. 'col' => 'name,id|id',
  372. ),
  373. 'all' => array
  374. (
  375. 'where' => array
  376. (
  377. 'state' => 1,
  378. 'site' => 'yes',
  379. ),
  380. 'type' => 'all',
  381. 'order' => array('id', 'desc'),
  382. 'col' => '*|id',
  383. ),
  384. # 获取订阅消息
  385. 'get_1' => array
  386. (
  387. 'where' => array
  388. (
  389. 'state' => 1,
  390. 'site' => 'yes',
  391. 'type' => array('2', '!='),
  392. ),
  393. 'type' => 'all',
  394. 'order' => array('id', 'desc'),
  395. 'col' => '*|id',
  396. ),
  397. # 获取客服消息
  398. 'get_2' => array
  399. (
  400. 'where' => array
  401. (
  402. 'state' => 1,
  403. 'site' => 'yes',
  404. 'type' => array('3', '!='),
  405. ),
  406. 'type' => 'all',
  407. 'order' => array('id', 'desc'),
  408. 'col' => '*|id',
  409. //'col' => 'id,concat("消息#",id) as name|id',
  410. ),
  411. ),
  412. );