Label.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Model_Label extends PhalApi_Model_NotORM {
  12. /* 标签列表 */
  13. public function getList(){
  14. $list=DI()->notorm->label
  15. ->select("id,name")
  16. ->order("orderno asc")
  17. ->fetchAll();
  18. return $list;
  19. }
  20. /* 标签列表 */
  21. public function searchLabel($key,$p){
  22. $list=DI()->notorm->label
  23. ->select("id,name")
  24. ->where('name like ?','%'.$key.'%')
  25. ->order("orderno asc")
  26. ->fetchAll();
  27. return $list;
  28. }
  29. /* 标签信息 */
  30. public function getLabel($id){
  31. $info=DI()->notorm->label
  32. ->select("id,name,des,thumb")
  33. ->where('id=?',$id)
  34. ->fetchOne();
  35. if($info){
  36. $info['thumb']=get_upload_path($info['thumb']);
  37. }
  38. return $info;
  39. }
  40. /* 标签下视频数量 */
  41. public function getVideos($labelid){
  42. $info=DI()->notorm->user_video
  43. ->where('labelid=?',$labelid)
  44. ->count();
  45. return $info;
  46. }
  47. }