pic_crop.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. /**
  3. * 上传表
  4. */
  5. # 定义几个常用的选项
  6. $option = array
  7. (
  8. 1 => '启用',
  9. 2 => '关闭',
  10. );
  11. $type = array
  12. (
  13. 1 => '居中裁剪',
  14. );
  15. return array
  16. (
  17. # 表名
  18. 'name' => 'pic_crop',
  19. # 显示给用户看的名称
  20. 'lang' => '图片裁剪配置',
  21. 'menu' => false,
  22. # 数据结构
  23. 'struct' => array
  24. (
  25. 'id' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '配置ID',
  29. 'default' => '',
  30. 'desc' => '',
  31. 'match' => 'is_numeric',
  32. 'search' => 'order',
  33. 'list' => true,
  34. ),
  35. 'name' => array
  36. (
  37. 'type' => 'varchar-24',
  38. 'name' => '配置名',
  39. 'default' => '',
  40. 'desc' => '请输入配置名',
  41. 'match' => 'is_string',
  42. 'update' => 'text',
  43. 'search' => 'fulltext',
  44. 'list' => true,
  45. ),
  46. 'width' => array
  47. (
  48. 'type' => 'int-11',
  49. 'name' => '宽度',
  50. 'default' => '0',
  51. 'desc' => '请输入宽度',
  52. 'match' => 'option',
  53. 'update' => 'text',
  54. 'list' => true,
  55. ),
  56. 'height' => array
  57. (
  58. 'type' => 'int-11',
  59. 'name' => '高度',
  60. 'default' => '0',
  61. 'desc' => '请输入高度',
  62. 'match' => 'option',
  63. 'update' => 'text',
  64. 'list' => true,
  65. ),
  66. 'state' => array
  67. (
  68. 'type' => 'tinyint-1',
  69. 'name' => '状态',
  70. 'default' => '1',
  71. 'desc' => '请选择状态',
  72. 'match' => 'is_numeric',
  73. ),
  74. 'cdate' => array
  75. (
  76. 'type' => 'int-11',
  77. 'name' => '录入时间',
  78. 'match' => array('is_numeric', time()),
  79. 'desc' => '',
  80. # 只有insert时才生效
  81. 'insert' => true,
  82. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  83. ),
  84. ),
  85. # request 请求接口定义
  86. 'request' => array
  87. (
  88. # info 取一条正常的数据
  89. 'info' => array
  90. (
  91. # 匹配的正则或函数 必填项
  92. 'where' => array
  93. (
  94. 'id' => 'is_numeric',
  95. 'state' => 1,
  96. ),
  97. 'type' => 'one',
  98. ),
  99. ),
  100. );