pic_thumb.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. /**
  3. * 上传表
  4. */
  5. # 定义几个常用的选项
  6. $option = array
  7. (
  8. 1 => '启用',
  9. 2 => '关闭',
  10. );
  11. return array
  12. (
  13. # 表名
  14. 'name' => 'pic_thumb',
  15. # 显示给用户看的名称
  16. 'lang' => '缩略图配置',
  17. //'menu' => false,
  18. # 数据结构
  19. 'struct' => array
  20. (
  21. 'id' => array
  22. (
  23. 'type' => 'int-11',
  24. 'name' => '配置ID',
  25. 'default' => '',
  26. 'desc' => '',
  27. 'match' => 'is_numeric',
  28. 'search' => 'order',
  29. 'list' => true,
  30. ),
  31. 'name' => array
  32. (
  33. 'type' => 'varchar-24',
  34. 'name' => '配置名',
  35. 'default' => '',
  36. 'desc' => '请输入配置名',
  37. 'match' => 'is_string',
  38. 'update' => 'text',
  39. 'search' => 'fulltext',
  40. 'list' => true,
  41. ),
  42. 'width' => array
  43. (
  44. 'type' => 'int-11',
  45. 'name' => '宽度',
  46. 'default' => '0',
  47. 'desc' => '请输入宽度',
  48. 'match' => 'option',
  49. 'update' => 'text',
  50. 'list' => true,
  51. ),
  52. 'height' => array
  53. (
  54. 'type' => 'int-11',
  55. 'name' => '高度',
  56. 'default' => '0',
  57. 'desc' => '请输入高度',
  58. 'match' => 'option',
  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. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  79. ),
  80. ),
  81. # 默认值
  82. /*
  83. 'default' => array
  84. (
  85. 'col' => 'name,width,height,state,cdate',
  86. 'value' => array
  87. (
  88. '"660*330",660,330,1,' . time(),
  89. '"330*165",330,165,1,' . time(),
  90. '"1340*760",1340,760,1,' . time(),
  91. '"420*420",420,420,1,' . time(),
  92. '"300*140",300,140,1,' . time(),
  93. '"580*230",580,230,1,' . time(),
  94. ),
  95. ),
  96. */
  97. # request 请求接口定义
  98. 'request' => array
  99. (
  100. # info 取一条正常的数据
  101. 'info' => array
  102. (
  103. # 匹配的正则或函数 必填项
  104. 'where' => array
  105. (
  106. 'id' => 'is_numeric',
  107. 'state' => 1,
  108. ),
  109. 'type' => 'one',
  110. ),
  111. ),
  112. );