live_comment.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. $table = Dever::config('base')->type;
  3. unset($table[1]);
  4. unset($table[2]);
  5. unset($table[4]);
  6. return array
  7. (
  8. # 表名
  9. 'name' => 'live_comment',
  10. # 显示给用户看的名称
  11. 'lang' => '直播留言管理',
  12. # 是否显示在后台菜单
  13. 'order' => 70,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. 'order' => 'desc',
  25. //'list' => true,
  26. ),
  27. 'uid' => array
  28. (
  29. 'type' => 'int-11',
  30. 'name' => '用户',
  31. 'default' => '0',
  32. 'desc' => '请选择用户',
  33. 'match' => 'is_numeric',
  34. //'update' => 'select',
  35. //'search' => 'select',
  36. 'search' => array
  37. (
  38. 'api' => 'passport/user-all',
  39. 'col' => 'username',
  40. 'result' => 'id',
  41. ),
  42. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  43. ),
  44. 'source_table' => array
  45. (
  46. 'type' => 'tinyint-1',
  47. 'name' => '评论类别',
  48. 'default' => '',
  49. 'desc' => '评论类别',
  50. 'match' => 'option',
  51. 'option' => $table,
  52. 'list' => true,
  53. ),
  54. 'source_id' => array
  55. (
  56. 'type' => 'int-11',
  57. 'name' => '标题',
  58. 'default' => '',
  59. 'desc' => '标题',
  60. 'match' => 'option',
  61. 'list' => 'Dever::load("act/lib/manage.load", "{source_table}", {source_id})',
  62. ),
  63. 'content' => array
  64. (
  65. 'type' => 'text-255',
  66. 'name' => '内容',
  67. 'update' => 'editor',
  68. 'key' => 1,
  69. 'default' => '',
  70. 'desc' => '请输入内容',
  71. 'match' => 'is_string',
  72. 'search' => 'fulltext',
  73. 'list' => 'table',
  74. 'modal' => '查看详情',
  75. ),
  76. 'state' => array
  77. (
  78. 'type' => 'tinyint-1',
  79. 'name' => '状态',
  80. 'default' => '1',
  81. 'desc' => '请选择状态',
  82. 'match' => 'is_numeric',
  83. ),
  84. 'cdate' => array
  85. (
  86. 'type' => 'int-11',
  87. 'name' => '评论时间',
  88. 'match' => array('is_numeric', time()),
  89. 'desc' => '',
  90. # 只有insert时才生效
  91. 'insert' => true,
  92. 'search' => 'date',
  93. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  94. ),
  95. ),
  96. 'manage' => array
  97. (
  98. 'insert' => false,
  99. 'edit' => false,
  100. ),
  101. );