like.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. $table = Dever::config('base')->type;
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'like',
  7. # 显示给用户看的名称
  8. 'lang' => '喜欢日志',
  9. # 是否显示在后台菜单
  10. 'order' => 79,
  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. 'source_table' => array
  42. (
  43. 'type' => 'tinyint-1',
  44. 'name' => '类别',
  45. 'default' => '',
  46. 'desc' => '类别',
  47. 'match' => 'option',
  48. 'option' => $table,
  49. 'list' => true,
  50. ),
  51. 'source_id' => array
  52. (
  53. 'type' => 'int-11',
  54. 'name' => '标题',
  55. 'default' => '',
  56. 'desc' => '标题',
  57. 'match' => 'option',
  58. 'list' => 'Dever::load("act/lib/manage.load", "{source_table}", {source_id})',
  59. ),
  60. 'content' => array
  61. (
  62. 'type' => 'text-255',
  63. 'name' => '内容',
  64. 'update' => 'editor',
  65. 'key' => 1,
  66. 'default' => '',
  67. 'desc' => '请输入内容',
  68. 'match' => 'is_string',
  69. 'search' => 'fulltext',
  70. 'list' => 'table',
  71. 'modal' => '查看详情',
  72. ),
  73. 'state' => array
  74. (
  75. 'type' => 'tinyint-1',
  76. 'name' => '状态',
  77. 'default' => '1',
  78. 'desc' => '请选择状态',
  79. 'match' => 'is_numeric',
  80. ),
  81. 'cdate' => array
  82. (
  83. 'type' => 'int-11',
  84. 'name' => '喜欢时间',
  85. 'match' => array('is_numeric', time()),
  86. 'desc' => '',
  87. # 只有insert时才生效
  88. 'insert' => true,
  89. 'search' => 'date',
  90. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  91. ),
  92. ),
  93. 'manage' => array
  94. (
  95. 'insert' => false,
  96. 'edit' => false,
  97. 'delete' => false,
  98. ),
  99. );