video_short.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <?php
  2. $status = Dever::config('base')->status;
  3. $is_button = array
  4. (
  5. 1 => '显示',
  6. 2 => '不显示',
  7. );
  8. $text = array
  9. (
  10. 1 => '上左',
  11. 2 => '上中',
  12. 3 => '上右',
  13. 4 => '中左',
  14. 5 => '正中',
  15. 6 => '中右',
  16. 7 => '下左',
  17. 8 => '下中',
  18. 9 => '下右',
  19. //10 => '自定义',
  20. );
  21. $bgcolor_type = array
  22. (
  23. 1 => '设置背景颜色',
  24. 2 => '不设置背景颜色',
  25. );
  26. $type = array
  27. (
  28. 1 => '竖屏',
  29. 2 => '横屏',
  30. );
  31. return array
  32. (
  33. # 表名
  34. 'name' => 'video_short',
  35. # 显示给用户看的名称
  36. 'lang' => '短视频',
  37. 'order' => 100,
  38. 'menu' => false,
  39. 'end' => array
  40. (
  41. 'insert' => 'collection/lib/content.updateTypeId',
  42. 'update' => 'collection/lib/content.updateTypeId',
  43. ),
  44. # 数据结构
  45. 'struct' => array
  46. (
  47. 'id' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => 'ID',
  51. 'default' => '',
  52. 'desc' => '',
  53. 'match' => 'is_numeric',
  54. //'list' => true,
  55. ),
  56. 'info_id' => array
  57. (
  58. 'type' => 'int-11',
  59. 'name' => '合集',
  60. 'default' => '',
  61. 'desc' => '合集',
  62. 'match' => 'is_numeric',
  63. 'update' => 'hidden',
  64. 'value' => Dever::input('search_option_info_id')
  65. ),
  66. 'content_id' => array
  67. (
  68. 'type' => 'int-11',
  69. 'name' => '合集内容id',
  70. 'default' => '',
  71. 'desc' => '合集内容id',
  72. 'match' => 'is_numeric',
  73. 'update' => 'hidden',
  74. 'value' => Dever::input('search_option_content_id')
  75. ),
  76. 'name' => array
  77. (
  78. 'type' => 'varchar-80',
  79. 'name' => '标题-暂时无用处,仅做区分用',
  80. 'default' => '',
  81. 'desc' => '标题',
  82. 'match' => 'option',
  83. 'update' => 'text',
  84. //'list' => true,
  85. 'search' => 'fulltext',
  86. //增加预览
  87. 'preview' => true,
  88. ),
  89. 'type' => array
  90. (
  91. 'type' => 'tinyint-1',
  92. 'name' => '展示类型',
  93. 'default' => '1',
  94. 'desc' => '展示类型',
  95. 'match' => 'is_numeric',
  96. 'update' => 'radio',
  97. 'option' => $type,
  98. ),
  99. 'video' => array
  100. (
  101. 'type' => 'varchar-800',
  102. 'name' => '上传视频-视频格式mp4,上传大小不能超过4G',
  103. 'default' => '',
  104. 'desc' => '上传点播视频',
  105. 'match' => 'is_string',
  106. 'update' => 'video',
  107. 'key' => '5',
  108. 'place' => '150',
  109. 'upload' => 'yun',
  110. 'large' => true,
  111. 'cover' => 'pic',//封面图字段名
  112. ),
  113. 'pic' => array
  114. (
  115. 'type' => 'varchar-150',
  116. 'name' => '封面图-封面图自动生成,也可以更改,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  117. 'default' => '',
  118. 'desc' => '封面图',
  119. 'match' => 'option',
  120. 'update' => 'image',
  121. 'key' => '1',
  122. 'place' => '750*1386',
  123. 'list' => '"<img src=\"{pic}\" class=\"dever-pic\" width=\"150\" \/>"',
  124. ),
  125. 'udate' => array
  126. (
  127. 'type' => 'int-11',
  128. 'name' => '更新时间',
  129. 'match' => array('is_numeric', time()),
  130. 'desc' => '',
  131. ),
  132. 'video_info' => array
  133. (
  134. 'type' => 'text-255',
  135. 'name' => '视频信息',
  136. 'default' => '',
  137. 'desc' => '视频信息',
  138. 'match' => 'is_string',
  139. ),
  140. 'text' => array
  141. (
  142. 'type' => 'text-1000',
  143. 'name' => '文字设置',
  144. 'default' => '',
  145. 'desc' => '文字设置',
  146. 'match' => 'is_string',
  147. 'option' => $text,
  148. 'update' => array
  149. (
  150. array
  151. (
  152. 'col' => 'name',
  153. 'name' => '文字内容',
  154. 'default' => '',
  155. 'desc' => '文字内容',
  156. 'match' => 'is_string',
  157. 'update' => 'textarea',
  158. ),
  159. array
  160. (
  161. 'col' => 'color',
  162. 'name' => '文字颜色',
  163. 'default' => '#000000',
  164. 'desc' => '文字颜色',
  165. 'match' => 'is_string',
  166. 'update' => 'color',
  167. ),
  168. array
  169. (
  170. 'col' => 'bgcolor_type',
  171. 'name' => '是否设置背景颜色',
  172. 'default' => '2',
  173. 'desc' => '是否设置背景颜色',
  174. 'match' => 'is_string',
  175. 'update' => 'radio',
  176. 'option' => $bgcolor_type,
  177. 'control' => 'bgcolor_type',
  178. ),
  179. array
  180. (
  181. 'col' => 'bgcolor',
  182. 'name' => '背景颜色',
  183. 'default' => '#000000',
  184. 'desc' => '背景颜色',
  185. 'match' => 'is_string',
  186. 'update' => 'color',
  187. 'show' => 'bgcolor_type=1'
  188. ),
  189. array
  190. (
  191. 'col' => 'size',
  192. 'name' => '文字大小-直接输入像素数字',
  193. 'default' => '16',
  194. 'desc' => '结果描述',
  195. 'match' => 'is_numeric',
  196. 'update' => 'text',
  197. ),
  198. array
  199. (
  200. 'col' => 'goods_id',
  201. 'name' => '选择商品',
  202. 'default' => '',
  203. 'desc' => '选择商品',
  204. 'match' => 'option',
  205. 'update' => 'select',
  206. 'update_search' => 'goods/lib/manage.search',
  207. ),
  208. ),
  209. ),
  210. 'is_button' => array
  211. (
  212. 'type' => 'int-11',
  213. 'name' => '是否显示保存按钮',
  214. 'default' => '2',
  215. 'desc' => '是否显示保存按钮',
  216. 'match' => 'is_numeric',
  217. 'update' => 'radio',
  218. 'option' => $is_button,
  219. 'control' => 'is_button',
  220. ),
  221. 'button_name' => array
  222. (
  223. 'type' => 'varchar-80',
  224. 'name' => '保存按钮文字内容',
  225. 'default' => '保存图片',
  226. 'desc' => '保存按钮文字内容',
  227. 'match' => 'option',
  228. 'update' => 'textarea',
  229. 'show' => 'is_button=1',
  230. ),
  231. 'button_color' => array
  232. (
  233. 'type' => 'varchar-10',
  234. 'name' => '保存按钮文字颜色',
  235. 'default' => '#000000',
  236. 'desc' => '保存按钮文字颜色',
  237. 'match' => 'option',
  238. 'update' => 'color',
  239. 'show' => 'is_button=1',
  240. ),
  241. 'udate' => array
  242. (
  243. 'type' => 'int-11',
  244. 'name' => '更新时间',
  245. 'match' => array('is_numeric', time()),
  246. 'desc' => '',
  247. ),
  248. 'status' => array
  249. (
  250. 'type' => 'int-11',
  251. 'name' => '发布状态',
  252. 'default' => '1',
  253. 'desc' => '发布状态',
  254. 'match' => 'is_numeric',
  255. //'update' => 'select',
  256. 'option' => $status,
  257. //'search' => 'select',
  258. //'list' => true,
  259. //'edit' => true,
  260. ),
  261. 'reorder' => array
  262. (
  263. 'type' => 'int-11',
  264. 'name' => '排序(数值越大越靠前)',
  265. 'default' => '1',
  266. 'desc' => '请输入排序',
  267. 'match' => 'option',
  268. //'update' => 'text',
  269. 'search' => 'order',
  270. 'list' => true,
  271. 'order' => 'desc',
  272. 'edit' => true,
  273. ),
  274. 'state' => array
  275. (
  276. 'type' => 'tinyint-1',
  277. 'name' => '状态',
  278. 'default' => '1',
  279. 'desc' => '请选择状态',
  280. 'match' => 'is_numeric',
  281. ),
  282. 'cdate' => array
  283. (
  284. 'type' => 'int-11',
  285. 'name' => '录入时间',
  286. 'match' => array('is_numeric', time()),
  287. 'desc' => '',
  288. # 只有insert时才生效
  289. 'insert' => true,
  290. ),
  291. ),
  292. # 管理功能
  293. 'manage' => array
  294. (
  295. ),
  296. # request 请求接口定义
  297. 'request' => array
  298. (
  299. 'getAll' => array
  300. (
  301. # 匹配的正则或函数 选填项
  302. 'option' => array
  303. (
  304. 'info_id' => 'yes',
  305. 'content_id' => 'yes',
  306. 'state' => 1,
  307. ),
  308. 'type' => 'all',
  309. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  310. 'col' => '*',
  311. ),
  312. ),
  313. );