心理咨询网
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SitemapModel.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年2月14日
  7. * Sitemap模型
  8. */
  9. namespace app\home\model;
  10. use core\basic\Model;
  11. class SitemapModel extends Model
  12. {
  13. // 分类栏目列表
  14. public function getSorts()
  15. {
  16. $fields = array(
  17. 'a.id',
  18. 'a.pcode',
  19. 'a.scode',
  20. 'a.name',
  21. 'a.filename',
  22. 'a.outlink',
  23. 'b.type',
  24. 'b.urlname'
  25. );
  26. $join = array(
  27. 'ay_model b',
  28. 'a.mcode=b.mcode',
  29. 'LEFT'
  30. );
  31. $result = parent::table('ay_content_sort a')->field($fields)
  32. ->where('a.status=1')
  33. ->where("a.acode='" . get_lg() . "'")
  34. ->join($join)
  35. ->order('a.pcode,a.sorting,a.id')
  36. ->select();
  37. return $result;
  38. }
  39. // 指定列表内容
  40. public function getSortContent($scode)
  41. {
  42. $fields = array(
  43. 'a.id',
  44. 'a.filename',
  45. 'a.date',
  46. 'c.type',
  47. 'c.urlname',
  48. 'b.scode',
  49. 'b.filename as sortfilename'
  50. );
  51. $join = array(
  52. array(
  53. 'ay_content_sort b',
  54. 'a.scode=b.scode',
  55. 'LEFT'
  56. ),
  57. array(
  58. 'ay_model c',
  59. 'b.mcode=c.mcode',
  60. 'LEFT'
  61. )
  62. );
  63. $where = array(
  64. 'a.status=1',
  65. 'c.type=2',
  66. "a.date<'" . date('Y-m-d H:i:s') . "'"
  67. );
  68. return parent::table('ay_content a')->field($fields)
  69. ->where("a.scode='$scode'")
  70. ->where($where)
  71. ->join($join)
  72. ->select();
  73. }
  74. }