video.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?php
  2. $status = Dever::config('base')->status;
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'video',
  7. # 显示给用户看的名称
  8. 'lang' => '普通视频',
  9. 'order' => 100,
  10. 'menu' => false,
  11. 'end' => array
  12. (
  13. 'insert' => 'collection/lib/content.updateTypeId',
  14. 'update' => 'collection/lib/content.updateTypeId',
  15. ),
  16. # 数据结构
  17. 'struct' => array
  18. (
  19. 'id' => array
  20. (
  21. 'type' => 'int-11',
  22. 'name' => 'ID',
  23. 'default' => '',
  24. 'desc' => '',
  25. 'match' => 'is_numeric',
  26. //'list' => true,
  27. ),
  28. 'info_id' => array
  29. (
  30. 'type' => 'int-11',
  31. 'name' => '合集',
  32. 'default' => '',
  33. 'desc' => '合集',
  34. 'match' => 'is_numeric',
  35. 'update' => 'hidden',
  36. 'value' => Dever::input('search_option_info_id')
  37. ),
  38. 'content_id' => array
  39. (
  40. 'type' => 'int-11',
  41. 'name' => '合集内容id',
  42. 'default' => '',
  43. 'desc' => '合集内容id',
  44. 'match' => 'is_numeric',
  45. 'update' => 'hidden',
  46. 'value' => Dever::input('search_option_content_id')
  47. ),
  48. 'name' => array
  49. (
  50. 'type' => 'varchar-80',
  51. 'name' => '标题-暂时无用,仅做区分用',
  52. 'default' => '',
  53. 'desc' => '标题',
  54. 'match' => 'option',
  55. 'update' => 'text',
  56. //'list' => true,
  57. //'search' => 'fulltext',
  58. //增加预览
  59. 'preview' => true,
  60. ),
  61. 'pic' => array
  62. (
  63. 'type' => 'varchar-150',
  64. 'name' => '封面图-不传将自动获取第1帧,图片尺寸750*1386px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  65. 'default' => '',
  66. 'desc' => '封面图',
  67. 'match' => 'option',
  68. 'update' => 'image',
  69. 'key' => '1',
  70. 'place' => '750*1386',
  71. 'list' => 'Dever::load("content/lib/manage.pic", "{pic}")',
  72. ),
  73. 'video' => array
  74. (
  75. 'type' => 'varchar-800',
  76. 'name' => '上传视频-视频格式mp4,上传大小不能超过4G',
  77. 'default' => '',
  78. 'desc' => '上传点播视频',
  79. 'match' => 'is_string',
  80. 'update' => 'upload',
  81. 'key' => '3',
  82. 'place' => '150',
  83. 'upload' => 'yun',
  84. 'large' => true,
  85. ),
  86. 'video_info' => array
  87. (
  88. 'type' => 'text-255',
  89. 'name' => '视频信息',
  90. 'default' => '',
  91. 'desc' => '视频信息',
  92. 'match' => 'is_string',
  93. ),
  94. 'udate' => array
  95. (
  96. 'type' => 'int-11',
  97. 'name' => '更新时间',
  98. 'match' => array('is_numeric', time()),
  99. 'desc' => '',
  100. ),
  101. 'status' => array
  102. (
  103. 'type' => 'int-11',
  104. 'name' => '发布状态',
  105. 'default' => '1',
  106. 'desc' => '发布状态',
  107. 'match' => 'is_numeric',
  108. //'update' => 'select',
  109. 'option' => $status,
  110. //'search' => 'select',
  111. //'list' => true,
  112. //'edit' => true,
  113. ),
  114. 'reorder' => array
  115. (
  116. 'type' => 'int-11',
  117. 'name' => '排序(数值越大越靠前)',
  118. 'default' => '1',
  119. 'desc' => '请输入排序',
  120. 'match' => 'option',
  121. //'update' => 'text',
  122. 'search' => 'order',
  123. 'list' => true,
  124. 'order' => 'desc',
  125. 'edit' => true,
  126. ),
  127. 'state' => array
  128. (
  129. 'type' => 'tinyint-1',
  130. 'name' => '状态',
  131. 'default' => '1',
  132. 'desc' => '请选择状态',
  133. 'match' => 'is_numeric',
  134. ),
  135. 'cdate' => array
  136. (
  137. 'type' => 'int-11',
  138. 'name' => '录入时间',
  139. 'match' => array('is_numeric', time()),
  140. 'desc' => '',
  141. # 只有insert时才生效
  142. 'insert' => true,
  143. ),
  144. ),
  145. # 管理功能
  146. 'manage' => array
  147. (
  148. ),
  149. # request 请求接口定义
  150. 'request' => array
  151. (
  152. 'getAll' => array
  153. (
  154. # 匹配的正则或函数 选填项
  155. 'option' => array
  156. (
  157. 'info_id' => 'yes',
  158. 'content_id' => 'yes',
  159. 'state' => 1,
  160. ),
  161. 'type' => 'all',
  162. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  163. 'col' => '*',
  164. ),
  165. ),
  166. );