cate.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'cate',
  6. # 显示给用户看的名称
  7. 'lang' => '分类管理',
  8. 'order' => 1,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => 'ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. 'search' => 'order',
  20. 'list' => true,
  21. ),
  22. 'name' => array
  23. (
  24. 'type' => 'varchar-80',
  25. 'name' => '名称',
  26. 'default' => '',
  27. 'desc' => '名称',
  28. 'match' => 'is_string',
  29. 'update' => 'text',
  30. 'search' => 'fulltext',
  31. 'list' => true,
  32. ),
  33. 'reorder' => array
  34. (
  35. 'type' => 'int-11',
  36. 'name' => '排序(数值越大越靠前)',
  37. 'default' => '1',
  38. 'desc' => '请输入排序',
  39. 'match' => 'option',
  40. 'update' => 'text',
  41. 'search' => 'order',
  42. 'list_name' => '排序',
  43. 'list' => true,
  44. 'order' => 'desc',
  45. 'edit' => 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. # 管理功能
  67. 'manage' => array
  68. (
  69. ),
  70. # 默认值
  71. 'default' => array
  72. (
  73. 'col' => 'name,reorder,state,cdate',
  74. 'value' => array
  75. (
  76. '"默认分类",10,1,' . time(),
  77. ),
  78. ),
  79. );