subscribe.php 2.3 KB

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