focus.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'focus',
  6. # 显示给用户看的名称
  7. 'lang' => '焦点图管理',
  8. # 后台菜单排序
  9. 'order' => 9,
  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. 'search' => 'order',
  21. //'list' => true,
  22. 'order' => 'desc',
  23. ),
  24. 'name' => array
  25. (
  26. 'type' => 'varchar-32',
  27. 'name' => '名称',
  28. 'default' => '',
  29. 'desc' => '请输入名称',
  30. 'match' => 'is_string',
  31. 'update' => 'text',
  32. 'search' => 'fulltext',
  33. 'list' => true,
  34. ),
  35. 'link' => array
  36. (
  37. 'type' => 'varchar-400',
  38. 'name' => '链接-可为空',
  39. 'default' => '',
  40. 'desc' => '请输入链接',
  41. 'match' => 'option',
  42. 'update' => 'text',
  43. 'search' => 'fulltext',
  44. //'list' => true,
  45. ),
  46. 'pic' => array
  47. (
  48. 'type' => 'varchar-150',
  49. 'name' => '图片-图片大小:750px*390px',
  50. 'default' => '',
  51. 'desc' => '请选择图片',
  52. 'match' => 'is_string',
  53. 'update' => 'image',
  54. 'key' => '1',
  55. 'place' => '150',
  56. ),
  57. 'reorder' => array
  58. (
  59. 'type' => 'int-11',
  60. 'name' => '排序(数值越大越靠前)',
  61. 'default' => '1',
  62. 'desc' => '请输入排序',
  63. 'match' => 'option',
  64. 'update' => 'text',
  65. 'search' => 'order',
  66. 'list' => true,
  67. 'order' => 'desc',
  68. 'edit' => true,
  69. ),
  70. 'state' => array
  71. (
  72. 'type' => 'tinyint-1',
  73. 'name' => '状态',
  74. 'default' => '1',
  75. 'desc' => '请选择状态',
  76. 'match' => 'is_numeric',
  77. ),
  78. 'cdate' => array
  79. (
  80. 'type' => 'int-11',
  81. 'name' => '录入时间',
  82. 'match' => array('is_numeric', time()),
  83. 'desc' => '',
  84. # 只有insert时才生效
  85. 'insert' => true,
  86. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  87. ),
  88. ),
  89. 'request' => array
  90. (
  91. 'getAll' => array
  92. (
  93. # 匹配的正则或函数 选填项
  94. 'option' => array
  95. (
  96. 'state' => 1,
  97. ),
  98. 'type' => 'all',
  99. 'order' => array('reorder' => 'desc', 'cdate' => 'desc'),
  100. 'col' => '*',
  101. ),
  102. ),
  103. );