continue.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'continue',
  6. # 显示给用户看的名称
  7. 'lang' => '用户复活次数',
  8. # 是否显示在后台菜单
  9. 'menu' => false,
  10. # 数据结构
  11. 'struct' => array
  12. (
  13. 'id' => array
  14. (
  15. 'type' => 'int-11',
  16. 'name' => 'ID',
  17. 'default' => '',
  18. 'desc' => '',
  19. 'match' => 'is_numeric',
  20. 'order' => 'desc',
  21. 'list' => true,
  22. ),
  23. 'uid' => array
  24. (
  25. 'type' => 'varchar-150',
  26. 'name' => '用户',
  27. 'default' => '',
  28. 'desc' => '用户id',
  29. 'match' => 'is_string',
  30. 'update' => 'text',
  31. 'search' => 'fulltext',
  32. 'list' => true,
  33. ),
  34. 'user_id' => array
  35. (
  36. 'type' => 'int-11',
  37. 'name' => '用户参与id',
  38. 'default' => '',
  39. 'desc' => '用户参与id',
  40. 'match' => 'is_numeric',
  41. //'list' => true,
  42. ),
  43. 'exam_id' => array
  44. (
  45. 'type' => 'int-11',
  46. 'name' => '活动',
  47. 'default' => '1',
  48. 'desc' => '活动id',
  49. 'match' => 'is_numeric',
  50. 'list' => '{exam_id} > 0 ? Dever::load("question/exam-one#name", {exam_id}) : "未知"',
  51. ),
  52. 'num' => array
  53. (
  54. 'type' => 'int-11',
  55. 'name' => '复活次数',
  56. 'default' => '0',
  57. 'desc' => '复活次数',
  58. 'match' => 'is_string',
  59. 'update' => 'text',
  60. 'list' => true,
  61. ),
  62. 'state' => array
  63. (
  64. 'type' => 'tinyint-1',
  65. 'name' => '状态',
  66. 'default' => '1',
  67. 'desc' => '请选择状态',
  68. 'match' => 'is_numeric',
  69. ),
  70. 'cdate' => array
  71. (
  72. 'type' => 'int-11',
  73. 'name' => '更新时间',
  74. 'match' => array('is_numeric', time()),
  75. 'desc' => '',
  76. # 只有insert时才生效
  77. //'insert' => true,
  78. 'search' => 'date',
  79. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  80. ),
  81. ),
  82. 'manage' => array
  83. (
  84. 'insert' => false,
  85. 'edit' => false,
  86. 'delete' => false,
  87. ),
  88. );