pcate.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'pcate',
  6. # 显示给用户看的名称
  7. 'lang' => '产品类型设置',
  8. # 后台菜单排序
  9. 'order' => 95,
  10. 'menu' => false,
  11. // 'auto' => 100000,
  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' => 'order',
  23. 'list' => true,
  24. 'order' => 'desc',
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-200',
  29. 'name' => '名称',
  30. 'default' => '',
  31. 'desc' => '名称',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. 'search' => 'fulltext',
  35. 'list' => true,
  36. ),
  37. 'reorder' => array
  38. (
  39. 'type' => 'int-11',
  40. 'name' => '排序-数值越大越靠前',
  41. 'default' => '1',
  42. 'desc' => '请输入排序',
  43. 'match' => 'option',
  44. 'update' => 'text',
  45. 'search' => 'order',
  46. 'list' => true,
  47. 'order' => 'desc',
  48. 'edit' => true,
  49. ),
  50. 'state' => array
  51. (
  52. 'type' => 'tinyint-1',
  53. 'name' => '状态',
  54. 'default' => '1',
  55. 'desc' => '请选择状态',
  56. 'match' => 'is_numeric',
  57. ),
  58. 'cdate' => array
  59. (
  60. 'type' => 'int-11',
  61. 'name' => '创建时间',
  62. 'match' => array('is_numeric', time()),
  63. 'desc' => '',
  64. # 只有insert时才生效
  65. 'insert' => true,
  66. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  67. ),
  68. ),
  69. 'manage' => array
  70. (
  71. //'insert' => false,
  72. 'delete' => false,
  73. // 'edit' => false,
  74. ),
  75. 'request' => array
  76. (
  77. 'getAll' => array
  78. (
  79. # 匹配的正则或函数 选填项
  80. 'option' => array
  81. (
  82. // 'id' => array('yes','>'),
  83. 'state' => 1,
  84. ),
  85. 'type' => 'all',
  86. 'order' => array('reorder' => 'desc', 'id' => 'asc'),
  87. 'col' => '*',
  88. ),
  89. ),
  90. );