info.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <?php
  2. $audit = Dever::config('base')->audit;
  3. $status = array
  4. (
  5. 1 => '下架',
  6. 2 => '上线发布',
  7. );
  8. # 每页的数据量
  9. $page = 15;
  10. $cate = function()
  11. {
  12. $array = array();
  13. $info = Dever::db('course/cate')->state();
  14. if($info)
  15. {
  16. $array += $info;
  17. }
  18. return $array;
  19. };
  20. $share = array
  21. (
  22. 1 => '显示',
  23. 2 => '不显示',
  24. );
  25. $template = array
  26. (
  27. 1 => '图文',
  28. 2 => '视频',
  29. );
  30. # 常用的col
  31. $col = 'id,cate_id,name,pic_cover,banner,num_add_view+num_view as num_view,content,template,`desc`';
  32. return array
  33. (
  34. # 表名
  35. 'name' => 'info',
  36. # 显示给用户看的名称
  37. 'lang' => '课程管理',
  38. 'order' => 100,
  39. # 数据结构
  40. 'struct' => array
  41. (
  42. 'id' => array
  43. (
  44. 'type' => 'int-11',
  45. 'name' => 'ID',
  46. 'default' => '',
  47. 'desc' => '',
  48. 'match' => 'is_numeric',
  49. 'list' => true,
  50. ),
  51. 'name' => array
  52. (
  53. 'type' => 'varchar-80',
  54. 'name' => '标题-课程标题,同时也用于分享标题',
  55. 'default' => '',
  56. 'desc' => '标题',
  57. 'match' => 'is_string',
  58. 'update' => 'text',
  59. 'list' => true,
  60. 'search' => 'fulltext',
  61. //增加预览
  62. 'preview' => true,
  63. ),
  64. 'desc' => array
  65. (
  66. 'type' => 'varchar-500',
  67. 'name' => '摘要-课程摘要,同时也用于分享内容',
  68. 'default' => '',
  69. 'desc' => '摘要',
  70. 'match' => 'is_string',
  71. 'update' => 'textarea',
  72. ),
  73. 'cate_id' => array
  74. (
  75. 'type' => 'int-11',
  76. 'name' => '所属分类',
  77. 'default' => '1',
  78. 'desc' => '所属分类',
  79. 'match' => 'is_numeric',
  80. 'update' => 'select',
  81. 'option' => $cate,
  82. 'search' => 'select',
  83. 'list' => 'Dever::load("course/cate-one#name", {cate_id})',
  84. ),
  85. 'pic' => array
  86. (
  87. 'type' => 'varchar-150',
  88. 'name' => '1:1封面图-图片尺寸380*380px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式,同时用于分享图片',
  89. 'default' => '',
  90. 'desc' => '封面图',
  91. 'match' => 'is_string',
  92. 'update' => 'image',
  93. 'key' => '1',
  94. 'place' => '150',
  95. ),
  96. 'banner' => array
  97. (
  98. 'type' => 'text-255',
  99. 'name' => '课程banner图-显示在课程详情,可以传入多张',
  100. 'default' => '',
  101. 'desc' => '封面图',
  102. 'match' => 'is_string',
  103. 'update' => 'images',
  104. 'key' => '1',
  105. ),
  106. 'price' => array
  107. (
  108. 'type' => 'varchar-50',
  109. 'name' => '课程价格-每小时的课程价格,单位元,直接填写数字即可',
  110. 'default' => '',
  111. 'desc' => '课程价格',
  112. 'match' => 'is_string',
  113. 'update' => 'text',
  114. ),
  115. 'num_add_view' => array
  116. (
  117. 'type' => 'int-11',
  118. 'name' => '浏览量基数',
  119. 'default' => '0',
  120. 'desc' => '浏览量基数',
  121. 'match' => 'option',
  122. //'update' => 'text',
  123. ),
  124. 'num_view' => array
  125. (
  126. 'type' => 'int-11',
  127. 'name' => '浏览量',
  128. 'default' => '0',
  129. 'desc' => '请填写浏览量',
  130. 'match' => 'option',
  131. 'search' => 'order',
  132. 'list' => '{num_view}+{num_add_view}',
  133. ),
  134. 'pdate' => array
  135. (
  136. 'type' => 'int-11',
  137. 'name' => '发布时间',
  138. 'match' => array('is_numeric', time()),
  139. 'default' => '',
  140. 'desc' => '',
  141. 'update' => 'date',
  142. 'callback' => 'maketime',
  143. 'insert' => true,
  144. //'list' => 'date("Y-m-d H:i:s", {pdate})',
  145. 'auth' => '"{pdate}" > 0',
  146. ),
  147. 'reorder' => array
  148. (
  149. 'type' => 'int-11',
  150. 'name' => '排序(数值越大越靠前)',
  151. 'default' => '1',
  152. 'desc' => '请输入排序',
  153. 'match' => 'option',
  154. 'update' => 'text',
  155. 'search' => 'order',
  156. 'list' => true,
  157. 'order' => 'desc',
  158. 'edit' => true,
  159. ),
  160. 'udate' => array
  161. (
  162. 'type' => 'int-11',
  163. 'name' => '更新时间',
  164. 'match' => array('is_numeric', time()),
  165. 'desc' => '',
  166. ),
  167. 'question' => array
  168. (
  169. 'type' => 'text-255',
  170. 'name' => '课程解决问题',
  171. 'default' => '',
  172. 'desc' => '课程解决问题',
  173. 'match' => 'is_string',
  174. 'update' => 'editor',
  175. 'key' => '1',
  176. ),
  177. 'wonderful' => array
  178. (
  179. 'type' => 'text-255',
  180. 'name' => '往期精彩',
  181. 'default' => '',
  182. 'desc' => '往期精彩',
  183. 'match' => 'is_string',
  184. 'update' => 'editor',
  185. 'key' => '1',
  186. ),
  187. 'content' => array
  188. (
  189. 'type' => 'text-255',
  190. 'name' => '课程内容',
  191. 'default' => '',
  192. 'desc' => '请输入内容',
  193. 'match' => 'is_string',
  194. 'update' => 'editor',
  195. 'key' => '1',
  196. //'media' => '5',//下面的音视频已经做到了
  197. //直接上传到云端
  198. //'upload' => 'qiniu',
  199. //上传大数据
  200. //'large' => true,
  201. //自定义编辑器右侧按钮
  202. /*
  203. 'editor' => array
  204. (
  205. 'name' => '选择插入模块',
  206. 'button' => array
  207. (
  208. array
  209. (
  210. # 名称
  211. 'name' => '图片',
  212. # 资源库id
  213. 'key' => 1,
  214. # 类型
  215. 'type' => 'image',
  216. ),
  217. array
  218. (
  219. 'name' => '音频',
  220. 'key' => 5,
  221. 'type' => 'media',
  222. ),
  223. array
  224. (
  225. 'name' => '视频',
  226. 'key' => 'video/lib/core.vod',
  227. ),
  228. array
  229. (
  230. 'name' => '直播',
  231. 'key' => 'video/lib/core.live',
  232. ),
  233. array
  234. (
  235. 'name' => '小程序',
  236. 'key' => 'content/lib/applet.update',
  237. 'type' => 'update',
  238. ),
  239. ),
  240. ),
  241. */
  242. ),
  243. 'status' => array
  244. (
  245. 'type' => 'int-11',
  246. 'name' => '发布状态',
  247. 'default' => '2',
  248. 'desc' => '发布状态',
  249. 'match' => 'is_numeric',
  250. //'update' => 'select',
  251. 'option' => $status,
  252. 'search' => 'select',
  253. 'list' => true,
  254. 'edit' => true,
  255. ),
  256. 'state' => array
  257. (
  258. 'type' => 'tinyint-1',
  259. 'name' => '状态',
  260. 'default' => '1',
  261. 'desc' => '请选择状态',
  262. 'match' => 'is_numeric',
  263. ),
  264. 'admin_founder' => array
  265. (
  266. 'type' => 'int-11',
  267. 'name' => '创建人',
  268. 'default' => '1',
  269. 'desc' => '创建人',
  270. 'match' => 'is_numeric',
  271. ),
  272. 'admin_editor' => array
  273. (
  274. 'type' => 'int-11',
  275. 'name' => '操作人',
  276. 'default' => '1',
  277. 'desc' => '操作人',
  278. 'match' => 'is_numeric',
  279. ),
  280. 'cdate' => array
  281. (
  282. 'type' => 'int-11',
  283. 'name' => '录入时间',
  284. 'match' => array('is_numeric', time()),
  285. 'desc' => '',
  286. # 只有insert时才生效
  287. 'insert' => true,
  288. ),
  289. ),
  290. # 索引
  291. 'index' => array
  292. (
  293. 'version' => 1,
  294. 1 => array
  295. (
  296. 'i1' => 'cate_id,reorder',
  297. )
  298. ),
  299. # 管理功能
  300. 'manage' => array
  301. (
  302. //'insert' => false,
  303. # 列表
  304. 'list_button' => array
  305. (
  306. //'edit' => array('预览', str_replace('https://api.', 'http://www.', Dever::url('main/preview.get?type=1'))),
  307. ),
  308. ),
  309. # request 请求接口定义
  310. 'request' => array
  311. (
  312. 'search' => array
  313. (
  314. # 匹配的正则或函数 选填项
  315. 'option' => array
  316. (
  317. 'ids' => array('yes-id', 'in'),
  318. 'cate_id' => 'yes',
  319. 'name' => array('yes', 'like'),
  320. 'id' => 'yes',
  321. 'state' => 1,
  322. ),
  323. 'type' => 'all',
  324. 'order' => array('reorder' => 'desc', 'pdate' => 'desc'),
  325. 'limit' => '0,1000',
  326. 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
  327. ),
  328. 'getAll' => array
  329. (
  330. # 匹配的正则或函数 选填项
  331. 'option' => array
  332. (
  333. 'cate_id' => 'yes',
  334. 'cate_ids' => array('yes-cate_id', 'in'),
  335. 'id' => 'yes',
  336. 'status' => 2,
  337. 'state' => 1,
  338. ),
  339. 'type' => 'all',
  340. 'order' => array('reorder' => 'desc','pdate' => 'desc'),
  341. 'page' => array($page, 'list'),
  342. 'col' => $col,
  343. ),
  344. 'getList' => array
  345. (
  346. # 匹配的正则或函数 选填项
  347. 'option' => array
  348. (
  349. 'cate_id' => 'yes',
  350. 'status' => 2,
  351. 'state' => 1,
  352. ),
  353. 'type' => 'all',
  354. 'order' => array('reorder' => 'desc','pdate' => 'desc'),
  355. 'limit' => '0,10',
  356. 'col' => $col,
  357. ),
  358. 'getRelation' => array
  359. (
  360. # 匹配的正则或函数 选填项
  361. 'option' => array
  362. (
  363. 'cate_id' => 'yes',
  364. 'cate_ids' => array('yes-cate_id', 'in'),
  365. 'noid' => array('yes-id', '!='),
  366. 'status' => 2,
  367. 'state' => 1,
  368. ),
  369. 'type' => 'all',
  370. 'order' => array('reorder' => 'desc','pdate' => 'desc'),
  371. 'limit' => '0,4',
  372. 'col' => $col,
  373. ),
  374. 'getOne' => array
  375. (
  376. # 匹配的正则或函数 选填项
  377. 'where' => array
  378. (
  379. 'id' => 'yes',
  380. ),
  381. 'type' => 'one',
  382. 'col' => $col,
  383. ),
  384. # 更新浏览量
  385. 'addView' => array
  386. (
  387. 'type' => 'update',
  388. 'where' => array
  389. (
  390. 'id' => 'yes',
  391. ),
  392. 'set' => array
  393. (
  394. 'num_view' => array('1', '+='),
  395. ),
  396. ),
  397. 'getIds' => array
  398. (
  399. # 匹配的正则或函数 选填项
  400. 'option' => array
  401. (
  402. 'cate_id' => array('yes-cate_id', 'in'),
  403. 'state' => 1,
  404. ),
  405. 'type' => 'all',
  406. 'order' => array('reorder' => 'desc','id' => 'desc'),
  407. 'col' => '*,id as value|id',
  408. ),
  409. ),
  410. );