config.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'config',
  6. # 显示给用户看的名称
  7. 'lang' => '消息回复配置',
  8. 'order' => 20,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => '网站ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. ),
  20. 'site' => array
  21. (
  22. 'type' => 'int-11',
  23. 'name' => '站点',
  24. 'default' => '',
  25. 'desc' => '请输入站点',
  26. 'match' => 'is_numeric',
  27. ),
  28. 'msg1' => array
  29. (
  30. 'type' => 'varchar-255',
  31. 'name' => '订阅回复消息-用户关注成功时,系统反馈给用户的信息',
  32. 'default' => '',
  33. 'desc' => '请输入订阅回复消息',
  34. 'match' => 'is_string',
  35. 'update' => 'textarea',
  36. ),
  37. 'msg2' => array
  38. (
  39. 'type' => 'varchar-255',
  40. 'name' => '默认回复消息-用户输入的信息在关键词自动回复中没有匹配到时,系统反馈给用户的信息',
  41. 'default' => '',
  42. 'desc' => '请输入默认回复消息',
  43. 'match' => 'is_string',
  44. 'update' => 'textarea',
  45. ),
  46. 'cdate' => array
  47. (
  48. 'type' => 'int-11',
  49. 'name' => '录入时间',
  50. 'match' => time(),
  51. 'desc' => '',
  52. # 只有insert时才生效
  53. 'insert' => true,
  54. ),
  55. ),
  56. 'auth' => 'site',
  57. 'manage' => array
  58. (
  59. # 后台管理不要列表页
  60. 'list' => 'update',
  61. 'desc' => '用户在关注成功和输入信息时,我们都可以在此设定一下自动回复的消息',
  62. ),
  63. );