level.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'level',
  6. # 显示给用户看的名称
  7. 'lang' => '任务级别设置',
  8. 'order' => 1,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => 'ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. //'search' => 'order',
  20. 'order' => 'desc',
  21. 'list' => true,
  22. ),
  23. 'name' => array
  24. (
  25. 'type' => 'varchar-60',
  26. 'name' => '名称',
  27. 'default' => '',
  28. 'desc' => '名称',
  29. 'match' => 'is_string',
  30. 'update' => 'text',
  31. 'search' => 'fulltext',
  32. 'list' => true,
  33. ),
  34. 'score' => array
  35. (
  36. 'type' => 'int-11',
  37. 'name' => '级别积分',
  38. 'default' => '',
  39. 'desc' => '级别积分',
  40. 'match' => 'is_numeric',
  41. 'update' => 'text',
  42. 'search' => 'fulltext',
  43. 'list' => true,
  44. ),
  45. 'reorder' => array
  46. (
  47. 'type' => 'int-11',
  48. 'name' => '排序(数值越大越靠前)',
  49. 'default' => '1',
  50. 'desc' => '请输入排序',
  51. 'match' => 'option',
  52. 'update' => 'text',
  53. 'search' => 'order',
  54. 'list_name' => '排序',
  55. 'list' => true,
  56. 'order' => 'desc',
  57. 'edit' => true,
  58. ),
  59. 'state' => array
  60. (
  61. 'type' => 'tinyint-1',
  62. 'name' => '状态',
  63. 'default' => '1',
  64. 'desc' => '请选择状态',
  65. 'match' => 'is_numeric',
  66. ),
  67. 'cdate' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '录入时间',
  71. 'match' => array('is_numeric', time()),
  72. 'desc' => '',
  73. # 只有insert时才生效
  74. 'insert' => true,
  75. 'search' => 'date',
  76. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  77. ),
  78. ),
  79. 'manage' => array
  80. (
  81. //'insert' => false,
  82. //'edit' => false,
  83. //'delete' => false,
  84. ),
  85. );