Home.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Domain_Home {
  12. public function getSlide($where) {
  13. $rs = array();
  14. $model = new Model_Home();
  15. $rs = $model->getSlide($where);
  16. return $rs;
  17. }
  18. public function getHot($p) {
  19. $rs = array();
  20. $model = new Model_Home();
  21. $rs = $model->getHot($p);
  22. return $rs;
  23. }
  24. public function search($uid,$key,$p) {
  25. $rs = array();
  26. $model = new Model_Home();
  27. $rs = $model->search($uid,$key,$p);
  28. return $rs;
  29. }
  30. public function getClassLive($liveclassid,$p){
  31. $rs = array();
  32. $model = new Model_Home();
  33. $rs = $model->getClassLive($liveclassid,$p);
  34. return $rs;
  35. }
  36. }