data.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. $project = function()
  3. {
  4. $array = array();
  5. $info = Dever::db('log/project')->state();
  6. if($info)
  7. {
  8. $array += $info;
  9. }
  10. return $array;
  11. };
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'data',
  16. # 显示给用户看的名称
  17. 'lang' => '数据统计',
  18. 'order' => 1,
  19. # 数据结构
  20. 'struct' => array
  21. (
  22. 'id' => array
  23. (
  24. 'type' => 'int-11',
  25. 'name' => 'ID',
  26. 'default' => '',
  27. 'desc' => '',
  28. 'match' => 'is_numeric',
  29. //'search' => 'order',
  30. 'order' => 'desc',
  31. //'list' => true,
  32. ),
  33. 'project_id' => array
  34. (
  35. 'type' => 'int-11',
  36. 'name' => '项目',
  37. 'default' => '1',
  38. 'desc' => '项目',
  39. 'match' => 'is_numeric',
  40. 'option' => $project,
  41. //'update' => 'select',
  42. 'search' => 'select',
  43. 'list' => true,
  44. ),
  45. 'year' => array
  46. (
  47. 'type' => 'int-11',
  48. 'name' => '时间',
  49. 'default' => '',
  50. 'desc' => '年',
  51. 'match' => 'is_numeric',
  52. 'update' => 'text',
  53. 'list' => '"{year}年{month}月{day}日{hour}时"',
  54. ),
  55. 'month' => array
  56. (
  57. 'type' => 'int-11',
  58. 'name' => '月',
  59. 'default' => '',
  60. 'desc' => '月',
  61. 'match' => 'is_numeric',
  62. 'update' => 'text',
  63. ),
  64. 'day' => array
  65. (
  66. 'type' => 'int-11',
  67. 'name' => '日',
  68. 'default' => '',
  69. 'desc' => '日',
  70. 'match' => 'is_numeric',
  71. 'update' => 'text',
  72. ),
  73. 'hour' => array
  74. (
  75. 'type' => 'int-11',
  76. 'name' => '小时',
  77. 'default' => '',
  78. 'desc' => '小时',
  79. 'match' => 'is_numeric',
  80. 'update' => 'text',
  81. ),
  82. 'time' => array
  83. (
  84. 'type' => 'int-11',
  85. 'name' => '时间',
  86. 'default' => '',
  87. 'desc' => '时间',
  88. 'match' => 'is_numeric',
  89. 'search' => 'time',
  90. 'update' => 'text',
  91. ),
  92. 'pv' => array
  93. (
  94. 'type' => 'int-11',
  95. 'name' => 'PV',
  96. 'default' => '',
  97. 'desc' => 'PV',
  98. 'match' => 'is_numeric',
  99. 'update' => 'text',
  100. 'search' => 'order',
  101. 'list' => true,
  102. ),
  103. 'uv' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => 'UV',
  107. 'default' => '',
  108. 'desc' => 'UV',
  109. 'match' => 'is_numeric',
  110. 'update' => 'text',
  111. 'search' => 'order',
  112. 'list' => true,
  113. ),
  114. 'state' => array
  115. (
  116. 'type' => 'tinyint-1',
  117. 'name' => '状态',
  118. 'default' => '1',
  119. 'desc' => '请选择状态',
  120. 'match' => 'is_numeric',
  121. ),
  122. 'cdate' => array
  123. (
  124. 'type' => 'int-11',
  125. 'name' => '录入时间',
  126. 'match' => array('is_numeric', time()),
  127. 'desc' => '',
  128. # 只有insert时才生效
  129. 'insert' => true,
  130. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  131. ),
  132. ),
  133. 'manage' => array
  134. (
  135. 'delete' => false,
  136. 'edit' => false,
  137. 'insert' => false,
  138. 'excel' => true,
  139. ),
  140. # request 请求接口定义
  141. 'request' => array
  142. (
  143. ),
  144. );