ApiService.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\service;
  12. use think\Db;
  13. class ApiService
  14. {
  15. /**
  16. * 获取所有友情链接
  17. */
  18. public static function links()
  19. {
  20. return Db::name('link')->where('status', 1)->order('list_order ASC')->select();
  21. }
  22. /**
  23. * 获取所有幻灯片
  24. * @param $slideId
  25. * @return false|\PDOStatement|string|\think\Collection
  26. */
  27. public static function slides($slideId)
  28. {
  29. $slideCount = Db::name('slide')->where('id', $slideId)->where(['status' => 1, 'delete_time' => 0])->count();
  30. if ($slideCount == 0) {
  31. return [];
  32. }
  33. $slides = Db::name('slide_item')->where('status', 1)->where('slide_id', $slideId)->order('list_order ASC')->select();
  34. return $slides;
  35. }
  36. }