share_reflux.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. $table = Dever::config('base')->type;
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'share_reflux',
  7. # 显示给用户看的名称
  8. 'lang' => '分享回流',
  9. # 是否显示在后台菜单
  10. 'order' => 60,
  11. 'menu' => false,
  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. 'source_uid' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '分享者',
  29. 'default' => '',
  30. 'desc' => '分享者',
  31. 'match' => 'option',
  32. 'search' => array
  33. (
  34. 'api' => 'passport/user-all',
  35. 'col' => 'username',
  36. 'result' => 'id',
  37. ),
  38. 'list' => '{source_uid} > 0 ? Dever::load("passport/user-one#username", {source_uid}) : "匿名用户"',
  39. ),
  40. 'source_table' => array
  41. (
  42. 'type' => 'tinyint-1',
  43. 'name' => '类别',
  44. 'default' => '',
  45. 'desc' => '类别',
  46. 'match' => 'option',
  47. 'option' => $table,
  48. 'list' => true,
  49. ),
  50. 'source_id' => array
  51. (
  52. 'type' => 'int-11',
  53. 'name' => '标题',
  54. 'default' => '',
  55. 'desc' => '标题',
  56. 'match' => 'option',
  57. 'list' => 'Dever::load("act/lib/manage.load", "{source_table}", {source_id})',
  58. ),
  59. 'uid' => array
  60. (
  61. 'type' => 'int-11',
  62. 'name' => '回流用户',
  63. 'default' => '0',
  64. 'desc' => '请选择用户',
  65. 'match' => 'is_numeric',
  66. //'update' => 'select',
  67. //'search' => 'select',
  68. 'search' => array
  69. (
  70. 'api' => 'passport/user-all',
  71. 'col' => 'username',
  72. 'result' => 'id',
  73. ),
  74. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  75. ),
  76. 'gid' => array
  77. (
  78. 'type' => 'varchar-80',
  79. 'name' => '群组id',
  80. 'default' => '',
  81. 'desc' => '群组id',
  82. 'match' => 'is_string',
  83. 'update' => 'text',
  84. 'search' => 'fulltext',
  85. //'list' => true,
  86. ),
  87. 'share_id' => array
  88. (
  89. 'type' => 'int-11',
  90. 'name' => '分享id',
  91. 'default' => '',
  92. 'desc' => '分享id',
  93. 'match' => 'option',
  94. ),
  95. 'state' => array
  96. (
  97. 'type' => 'tinyint-1',
  98. 'name' => '状态',
  99. 'default' => '1',
  100. 'desc' => '请选择状态',
  101. 'match' => 'is_numeric',
  102. ),
  103. 'cdate' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '录入时间',
  107. 'match' => array('is_numeric', time()),
  108. 'desc' => '',
  109. # 只有insert时才生效
  110. 'insert' => true,
  111. 'search' => 'date',
  112. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  113. ),
  114. ),
  115. 'manage' => array
  116. (
  117. 'insert' => false,
  118. 'edit' => false,
  119. 'delete' => false,
  120. ),
  121. # request 请求接口定义
  122. 'request' => array
  123. (
  124. ),
  125. );