暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Citysite.php 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\home\controller;
  14. class Citysite extends Base
  15. {
  16. public function _initialize() {
  17. parent::_initialize();
  18. }
  19. /**
  20. * 多城市站点主页
  21. */
  22. public function index()
  23. {
  24. if (!config('city_switch_on') || !empty($this->home_site)) {
  25. to_index("404");
  26. }
  27. $result['pageurl'] = $this->request->url(true); // 获取当前页面URL
  28. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl']); // 获取当前页面对应的移动端URL
  29. // 移动端域名
  30. $result['mobile_domain'] = '';
  31. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  32. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  33. }
  34. $result['seo_title'] = !empty($this->eyou['global']['citysite_seo_title']) ? $this->eyou['global']['citysite_seo_title'] : '多城市分站_'.$this->eyou['global']['web_name'];
  35. $result['seo_keywords'] = !empty($this->eyou['global']['citysite_seo_keywords']) ? $this->eyou['global']['citysite_seo_keywords'] : '';
  36. $result['seo_description'] = !empty($this->eyou['global']['citysite_seo_description']) ? $this->eyou['global']['citysite_seo_description'] : '';
  37. $eyou = array(
  38. 'field' => $result,
  39. );
  40. $this->eyou = array_merge($this->eyou, $eyou);
  41. $this->assign('eyou', $this->eyou);
  42. /*模板文件*/
  43. $viewfile = 'index_citysite';
  44. /*--end*/
  45. if (!empty($this->home_site)) { // 多站点内置模板文件名
  46. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$this->home_site;
  47. $viewfilepath2 = TEMPLATE_PATH.$this->theme_style_path.DS.'city'.DS.$this->home_site;
  48. if (!empty($this->eyou['global']['site_template'])) {
  49. if (file_exists($viewfilepath2)) {
  50. $viewfile = "city/{$this->home_site}/{$viewfile}";
  51. } else if (file_exists($viewfilepath)) {
  52. $viewfile = "{$this->home_site}/{$viewfile}";
  53. }
  54. }
  55. }
  56. return $this->fetch(":{$viewfile}");
  57. }
  58. }