data.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. $id = Dever::input('search_option_col_id', 1);
  3. $col = Dever::db('ai/col')->one($id);
  4. return array
  5. (
  6. # 表名
  7. 'name' => 'data',
  8. # 显示给用户看的名称
  9. 'lang' => '字段[' . $col['name'] . ']数据管理',
  10. 'order' => 10,
  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. 'search' => 'fulltext',
  23. 'order' => 'desc',
  24. 'list' => true,
  25. ),
  26. 'col_id' => array
  27. (
  28. 'type' => 'int-11',
  29. 'name' => '所属字段',
  30. 'default' => '',
  31. 'value' => $col['id'],
  32. 'desc' => '所属字段',
  33. 'match' => 'is_numeric',
  34. 'update' => 'hidden',
  35. 'list' => $col['name'],
  36. ),
  37. 'value' => array
  38. (
  39. 'type' => 'text-255',
  40. 'name' => '字段的值',
  41. 'default' => '',
  42. 'desc' => '字段的值',
  43. 'match' => 'is_string',
  44. 'update' => $col['type'],
  45. 'list' => true,
  46. ),
  47. 'state' => array
  48. (
  49. 'type' => 'tinyint-1',
  50. 'name' => '状态',
  51. 'default' => '1',
  52. 'desc' => '请选择状态',
  53. 'match' => 'is_numeric',
  54. ),
  55. 'cdate' => array
  56. (
  57. 'type' => 'int-11',
  58. 'name' => '录入时间',
  59. 'match' => array('is_numeric', time()),
  60. 'desc' => '',
  61. # 只有insert时才生效
  62. 'insert' => true,
  63. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  64. ),
  65. ),
  66. 'manage' => array
  67. (
  68. ),
  69. # request 请求接口定义
  70. 'request' => array
  71. (
  72. ),
  73. );