menu.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. # 定义几个常用的选项
  3. $option = array
  4. (
  5. 1 => '显示',
  6. 2 => '不显示',
  7. );
  8. $target = array
  9. (
  10. '_blank' => '是',
  11. '_self' => '否',
  12. );
  13. return array
  14. (
  15. # 表名
  16. 'name' => 'menu',
  17. # 显示给用户看的名称
  18. 'lang' => '导航菜单设置',
  19. # 数据结构
  20. 'struct' => array
  21. (
  22. 'id' => array
  23. (
  24. 'type' => 'int-11',
  25. 'name' => '菜单ID',
  26. 'default' => '',
  27. 'desc' => '',
  28. 'match' => 'is_numeric',
  29. 'order' => 'desc',
  30. ),
  31. 'name' => array
  32. (
  33. 'type' => 'varchar-24',
  34. 'name' => '菜单名称',
  35. 'default' => '',
  36. 'desc' => '请输入菜单名称',
  37. 'match' => 'is_string',
  38. 'update' => 'text',
  39. 'search' => 'order,fulltext',
  40. 'list' => true,
  41. ),
  42. 'target' => array
  43. (
  44. 'type' => 'varchar-24',
  45. 'name' => '打开新页面',
  46. 'default' => '_self',
  47. 'desc' => '打开新页面',
  48. 'match' => 'is_string',
  49. 'option' => $target,
  50. 'update' => 'radio',
  51. //'list' => true,
  52. ),
  53. 'link' => array
  54. (
  55. 'type' => 'varchar-150',
  56. 'name' => '链接',
  57. 'default' => '',
  58. 'desc' => '请输入链接',
  59. 'match' => 'is_string',
  60. 'update' => 'text',
  61. 'search' => 'fulltext',
  62. 'list' => true,
  63. ),
  64. 'reorder' => array
  65. (
  66. 'type' => 'int-11',
  67. 'name' => '排序(数值越大越靠前)',
  68. 'default' => '1',
  69. 'desc' => '请输入排序',
  70. 'match' => 'option',
  71. 'update' => 'text',
  72. 'search' => 'order',
  73. 'list' => true,
  74. 'order' => 'desc',
  75. 'edit' => true,
  76. ),
  77. 'state' => array
  78. (
  79. 'type' => 'tinyint-1',
  80. 'name' => '状态',
  81. 'default' => '1',
  82. 'desc' => '请选择状态',
  83. 'match' => 'is_numeric',
  84. 'option' => $option,
  85. 'update' => 'radio',
  86. ),
  87. 'cdate' => array
  88. (
  89. 'type' => 'int-11',
  90. 'name' => '录入时间',
  91. 'match' => array('is_numeric', time()),
  92. 'desc' => '',
  93. # 只有insert时才生效
  94. 'insert' => true,
  95. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  96. ),
  97. )
  98. );