model.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <?php
  2. $type = array
  3. (
  4. 1 => '图片',
  5. 2 => '文字',
  6. );
  7. $fonts = array
  8. (
  9. 1 => '常规',
  10. 2 => '粗体',
  11. 3 => '中等',
  12. );
  13. $position_type = array
  14. (
  15. 1 => '左上角',
  16. 2 => '左下角',
  17. 3 => '右上角',
  18. 4 => '右下角',
  19. 5 => '居中',
  20. 6 => '上居中',
  21. 7 => '下居中',
  22. 8 => '左居中',
  23. 9 => '右居住',
  24. 10 => '自定义',
  25. );
  26. return array
  27. (
  28. # 表名
  29. 'name' => 'model',
  30. # 显示给用户看的名称
  31. 'lang' => '模块设置',
  32. 'menu' => false,
  33. 'check' => 'template_id,key',
  34. # 数据结构
  35. 'struct' => array
  36. (
  37. 'id' => array
  38. (
  39. 'type' => 'int-11',
  40. 'name' => 'ID',
  41. 'default' => '',
  42. 'desc' => '',
  43. 'match' => 'is_numeric',
  44. 'search' => 'order',
  45. //'list' => true,
  46. ),
  47. 'template_id' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => '所属模板',
  51. 'default' => '1',
  52. 'desc' => '请选择所属模板',
  53. 'match' => 'is_numeric',
  54. 'update' => 'hidden',
  55. 'value' => Dever::input('search_option_template_id')
  56. ),
  57. 'name' => array
  58. (
  59. 'type' => 'varchar-32',
  60. 'name' => '模块名称',
  61. 'default' => '',
  62. 'desc' => '模块名称',
  63. 'match' => 'is_string',
  64. 'update' => 'text',
  65. 'search' => 'fulltext',
  66. 'list' => true,
  67. ),
  68. 'key' => array
  69. (
  70. 'type' => 'varchar-32',
  71. 'name' => '模块标识-设置模块时,使用该标识来设置模块信息',
  72. 'default' => '',
  73. 'desc' => '模块标识',
  74. 'match' => 'is_string',
  75. 'update' => 'text',
  76. 'search' => 'fulltext',
  77. 'list' => true,
  78. ),
  79. 'type' => array
  80. (
  81. 'type' => 'int-11',
  82. 'name' => '模块类型',
  83. 'default' => '1',
  84. 'desc' => '请选择模块类型',
  85. 'match' => 'is_numeric',
  86. 'update' => 'radio',
  87. 'option' => $type,
  88. 'search' => 'select',
  89. 'list' => true,
  90. 'control' => 'type',
  91. ),
  92. 'value' => array
  93. (
  94. 'type' => 'varchar-500',
  95. 'name' => '模块默认值',
  96. 'default' => '',
  97. 'desc' => '模块默认值',
  98. 'match' => 'option',
  99. 'update' => 'text',
  100. 'search' => 'fulltext',
  101. //'list' => true,
  102. ),
  103. 'position_type' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '模块位置',
  107. 'default' => '8',
  108. 'desc' => '请选择模块位置',
  109. 'match' => 'is_numeric',
  110. 'update' => 'radio',
  111. 'option' => $position_type,
  112. //'search' => 'select',
  113. //'list' => true,
  114. 'control' => 'position_type',
  115. ),
  116. 'position' => array
  117. (
  118. 'type' => 'varchar-32',
  119. 'name' => '模块定位-位置为left,top,如100,200',
  120. 'default' => '0,0',
  121. 'desc' => '模块定位',
  122. 'match' => 'is_string',
  123. 'update' => 'text',
  124. 'show' => 'position_type=10',
  125. ),
  126. 'offset' => array
  127. (
  128. 'type' => 'varchar-32',
  129. 'name' => '偏移量-偏移位置为left,top,如-10,-20',
  130. 'default' => '0,0',
  131. 'desc' => '偏移量',
  132. 'match' => 'is_string',
  133. 'update' => 'text',
  134. ),
  135. 'text_width' => array
  136. (
  137. 'type' => 'varchar-11',
  138. 'name' => '文字宽度',
  139. 'default' => '',
  140. 'desc' => '文字宽度',
  141. 'match' => 'is_string',
  142. 'update' => 'text',
  143. 'show' => 'type=2',
  144. ),
  145. 'width' => array
  146. (
  147. 'type' => 'varchar-11',
  148. 'name' => '图片宽度',
  149. 'default' => '200',
  150. 'desc' => '图片宽度',
  151. 'match' => 'is_string',
  152. 'update' => 'text',
  153. 'show' => 'type=1',
  154. ),
  155. 'height' => array
  156. (
  157. 'type' => 'varchar-11',
  158. 'name' => '图片高度',
  159. 'default' => '200',
  160. 'desc' => '图片高度',
  161. 'match' => 'is_string',
  162. 'update' => 'text',
  163. 'show' => 'type=1',
  164. ),
  165. 'color' => array
  166. (
  167. 'type' => 'varchar-10',
  168. 'name' => '文字颜色',
  169. 'default' => '#000000',
  170. 'desc' => '文字颜色',
  171. 'match' => 'is_string',
  172. 'update' => 'color',
  173. 'show' => 'type=2',
  174. ),
  175. 'fonts' => array
  176. (
  177. 'type' => 'int-11',
  178. 'name' => '字体',
  179. 'default' => '1',
  180. 'desc' => '字体',
  181. 'match' => 'is_numeric',
  182. 'update' => 'select',
  183. 'option' => $fonts,
  184. 'show' => 'type=2',
  185. ),
  186. 'size' => array
  187. (
  188. 'type' => 'int-11',
  189. 'name' => '文字大小-直接输入像素数字',
  190. 'default' => '16',
  191. 'desc' => '文字大小',
  192. 'match' => 'is_numeric',
  193. 'update' => 'text',
  194. 'show' => 'type=2',
  195. ),
  196. 'angle' => array
  197. (
  198. 'type' => 'int-11',
  199. 'name' => '角度-直接输入数字',
  200. 'default' => '0',
  201. 'desc' => '角度',
  202. 'match' => 'is_numeric',
  203. 'update' => 'text',
  204. 'show' => 'type=2',
  205. ),
  206. 'state' => array
  207. (
  208. 'type' => 'tinyint-1',
  209. 'name' => '状态',
  210. 'default' => '1',
  211. 'desc' => '请选择状态',
  212. 'match' => 'is_numeric',
  213. ),
  214. 'cdate' => array
  215. (
  216. 'type' => 'int-11',
  217. 'name' => '录入时间',
  218. 'match' => array('is_numeric', time()),
  219. 'desc' => '',
  220. # 只有insert时才生效
  221. 'insert' => true,
  222. 'search' => 'date',
  223. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  224. ),
  225. ),
  226. );