menu.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. $type = array
  3. (
  4. 1 => '链接',
  5. 2 => '推送位',
  6. 3 => '新闻',
  7. 4 => '业务',
  8. 5 => '案例',
  9. );
  10. return array
  11. (
  12. # 表名
  13. 'name' => 'menu',
  14. # 显示给用户看的名称
  15. 'lang' => '网站菜单管理',
  16. 'order' => -9,
  17. # 数据结构
  18. 'struct' => array
  19. (
  20. 'id' => array
  21. (
  22. 'type' => 'int-11',
  23. 'name' => 'ID',
  24. 'default' => '',
  25. 'desc' => '',
  26. 'match' => 'is_numeric',
  27. 'list' => true,
  28. ),
  29. 'name' => array
  30. (
  31. 'type' => 'varchar-32',
  32. 'name' => '菜单名称',
  33. 'default' => '',
  34. 'desc' => '请输入菜单名称',
  35. 'match' => 'is_string',
  36. 'update' => 'text',
  37. 'search' => 'fulltext',
  38. 'list' => true,
  39. ),
  40. 'link' => array
  41. (
  42. 'type' => 'varchar-2000',
  43. 'name' => '菜单链接',
  44. 'default' => '',
  45. 'desc' => '菜单链接',
  46. 'match' => 'is_string',
  47. 'update' => 'textarea',
  48. ),
  49. 'reorder' => array
  50. (
  51. 'type' => 'int-11',
  52. 'name' => '排序-数值越大越靠前,相当于置顶',
  53. 'default' => '1',
  54. 'desc' => '请输入排序',
  55. 'match' => 'option',
  56. //'update' => 'text',
  57. 'search' => 'order',
  58. 'list' => true,
  59. 'order' => 'desc',
  60. 'edit' => 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", {cdate})',
  79. ),
  80. ),
  81. 'manage' => array
  82. (
  83. 'lang' => 'name',
  84. ),
  85. 'default' => array
  86. (
  87. 'col' => 'name,link,cdate',
  88. 'value' => array
  89. (
  90. '"首页","home",' . time(),
  91. ),
  92. ),
  93. );