focus.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. $type = array
  3. (
  4. 1 => '链接',
  5. 2 => '文章',
  6. 3 => '视频',
  7. 4 => '直播',
  8. 5 => '杂志',
  9. );
  10. return array
  11. (
  12. # 表名
  13. 'name' => 'focus',
  14. # 显示给用户看的名称
  15. 'lang' => '焦点图管理',
  16. # 后台菜单排序
  17. 'order' => 9,
  18. # 数据结构
  19. 'struct' => array
  20. (
  21. 'id' => array
  22. (
  23. 'type' => 'int-11',
  24. 'name' => 'ID',
  25. 'default' => '',
  26. 'desc' => '',
  27. 'match' => 'is_numeric',
  28. 'search' => 'order',
  29. //'list' => true,
  30. 'order' => 'desc',
  31. ),
  32. 'name' => array
  33. (
  34. 'type' => 'varchar-32',
  35. 'name' => '名称',
  36. 'default' => '',
  37. 'desc' => '请输入名称',
  38. 'match' => 'is_string',
  39. 'update' => 'text',
  40. 'search' => 'fulltext',
  41. 'list' => true,
  42. /*
  43. 'key' => 1,
  44. 'media' => 5,
  45. */
  46. ),
  47. 'type' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => '类型',
  51. 'default' => '1',
  52. 'desc' => '请选择类型',
  53. 'match' => 'is_numeric',
  54. 'update' => 'select',
  55. 'option' => $type,
  56. ),
  57. 'link' => array
  58. (
  59. 'type' => 'varchar-400',
  60. 'name' => '链接或者内容id',
  61. 'default' => '',
  62. 'desc' => '请输入链接',
  63. 'match' => 'option',
  64. 'update' => 'text',
  65. 'search' => 'fulltext',
  66. //'list' => true,
  67. //'searchbox' => array('ku/lib/manage.search_product?json=1', 'id', 'ku/lib/manage.search_product_by_ids', 'type'),
  68. ),
  69. 'pic' => array
  70. (
  71. 'type' => 'varchar-150',
  72. 'name' => '图片-图片大小:000px*000px',
  73. 'default' => '',
  74. 'desc' => '请选择图片',
  75. 'match' => 'is_string',
  76. 'update' => 'image',
  77. 'key' => '1',
  78. 'place' => '150',
  79. ),
  80. 'reorder' => array
  81. (
  82. 'type' => 'int-11',
  83. 'name' => '排序(数值越大越靠前)',
  84. 'default' => '1',
  85. 'desc' => '请输入排序',
  86. 'match' => 'option',
  87. 'update' => 'text',
  88. 'search' => 'order',
  89. 'list' => true,
  90. 'order' => 'desc',
  91. 'edit' => true,
  92. ),
  93. 'state' => array
  94. (
  95. 'type' => 'tinyint-1',
  96. 'name' => '状态',
  97. 'default' => '1',
  98. 'desc' => '请选择状态',
  99. 'match' => 'is_numeric',
  100. ),
  101. 'cdate' => array
  102. (
  103. 'type' => 'int-11',
  104. 'name' => '录入时间',
  105. 'match' => array('is_numeric', time()),
  106. 'desc' => '',
  107. # 只有insert时才生效
  108. 'insert' => true,
  109. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  110. ),
  111. ),
  112. 'request' => array
  113. (
  114. 'getAll' => array
  115. (
  116. # 匹配的正则或函数 选填项
  117. 'option' => array
  118. (
  119. 'state' => 1,
  120. ),
  121. 'type' => 'all',
  122. 'order' => array('reorder' => 'desc', 'cdate' => 'desc'),
  123. 'col' => '*',
  124. ),
  125. ),
  126. );