comment.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. $page = 10;
  3. $table = Dever::config('base')->type;
  4. return array
  5. (
  6. # 表名
  7. 'name' => 'comment',
  8. # 显示给用户看的名称
  9. 'lang' => '评论管理',
  10. # 是否显示在后台菜单
  11. 'order' => 80,
  12. # 数据结构
  13. 'struct' => array
  14. (
  15. 'id' => array
  16. (
  17. 'type' => 'int-11',
  18. 'name' => 'ID',
  19. 'default' => '',
  20. 'desc' => '',
  21. 'match' => 'is_numeric',
  22. 'order' => 'desc',
  23. //'list' => true,
  24. ),
  25. 'uid' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '用户名',
  29. 'default' => '0',
  30. 'desc' => '请选择用户',
  31. 'match' => 'is_numeric',
  32. //'update' => 'select',
  33. //'search' => 'select',
  34. 'search' => array
  35. (
  36. 'api' => 'passport/user-all',
  37. 'col' => 'username',
  38. 'result' => 'id',
  39. ),
  40. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  41. ),
  42. 'type' => array
  43. (
  44. 'type' => 'tinyint-1',
  45. 'name' => '评论类别',
  46. 'default' => '',
  47. 'desc' => '评论类别',
  48. 'match' => 'option',
  49. 'option' => $table,
  50. 'search' => 'select',
  51. 'list' => true,
  52. ),
  53. 'data_id' => array
  54. (
  55. 'type' => 'int-11',
  56. 'name' => '标题',
  57. 'default' => '',
  58. 'desc' => '标题',
  59. 'match' => 'option',
  60. 'list' => 'Dever::load("act/lib/manage.load", "{type}", {data_id})',
  61. ),
  62. 'num_up' => array
  63. (
  64. 'type' => 'int-11',
  65. 'name' => '点赞数',
  66. 'default' => '0',
  67. 'desc' => '点赞数',
  68. 'match' => 'option',
  69. //'search' => 'order',
  70. 'list' => true,
  71. ),
  72. 'content' => array
  73. (
  74. 'type' => 'text-255',
  75. 'name' => '内容',
  76. 'update' => 'editor',
  77. 'key' => 1,
  78. 'default' => '',
  79. 'desc' => '请输入内容',
  80. 'match' => 'is_string',
  81. 'search' => 'fulltext',
  82. //'list' => 'table',
  83. //'modal' => '查看详情',
  84. 'list' => true,
  85. ),
  86. 'state' => array
  87. (
  88. 'type' => 'tinyint-1',
  89. 'name' => '状态',
  90. 'default' => '1',
  91. 'desc' => '请选择状态',
  92. 'match' => 'is_numeric',
  93. ),
  94. 'cdate' => array
  95. (
  96. 'type' => 'int-11',
  97. 'name' => '评论时间',
  98. 'match' => array('is_numeric', time()),
  99. 'desc' => '',
  100. # 只有insert时才生效
  101. 'insert' => true,
  102. 'search' => 'date',
  103. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  104. ),
  105. ),
  106. 'manage' => array
  107. (
  108. 'insert' => false,
  109. 'edit' => false,
  110. ),
  111. # request 请求接口定义
  112. 'request' => array
  113. (
  114. 'getAll' => array
  115. (
  116. # 匹配的正则或函数 选填项
  117. 'option' => array
  118. (
  119. 'uid' => 'yes',
  120. 'data_id' => 'yes',
  121. 'type' => 'yes',
  122. 'state' => 1,
  123. ),
  124. 'type' => 'all',
  125. 'order' => array('id' => 'desc'),
  126. 'page' => array($page, 'list'),
  127. 'col' => '*',
  128. ),
  129. )
  130. );