Ingen beskrivning
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.

Sitemap.php 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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\admin\controller;
  14. use think\Db;
  15. use think\template\driver\File;
  16. class Sitemap extends Base
  17. {
  18. public function _initialize() {
  19. parent::_initialize();
  20. }
  21. /*
  22. * Sitemap
  23. */
  24. public function index()
  25. {
  26. $inc_type = 'sitemap';
  27. if (IS_POST) {
  28. $param = input('post.');
  29. $param['sitemap_not1'] = isset($param['sitemap_not1']) ? $param['sitemap_not1'] : 0;
  30. $param['sitemap_not2'] = isset($param['sitemap_not2']) ? $param['sitemap_not2'] : 0;
  31. $param['sitemap_xml'] = isset($param['sitemap_xml']) ? $param['sitemap_xml'] : 0;
  32. $param['sitemap_html'] = isset($param['sitemap_html']) ? $param['sitemap_html'] : 0;
  33. $param['sitemap_txt'] = isset($param['sitemap_txt']) ? $param['sitemap_txt'] : 0;
  34. $param['sitemap_archives_num'] = isset($param['sitemap_archives_num']) ? intval($param['sitemap_archives_num']) : 100;
  35. /*多语言*/
  36. if (is_language()) {
  37. $langRow = \think\Db::name('language')->order('id asc')
  38. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  39. ->select();
  40. foreach ($langRow as $key => $val) {
  41. tpCache($inc_type,$param,$val['mark']);
  42. }
  43. } else {
  44. tpCache($inc_type,$param);
  45. }
  46. /*--end*/
  47. /* 生成sitemap */
  48. sitemap_all();
  49. $this->success('操作成功', url('Sitemap/index'));
  50. }
  51. $config = tpCache($inc_type);
  52. $this->assign('config',$config);//当前配置项
  53. if($this->globalConfig['web_mobile_domain_open']){
  54. $mobile_domain = preg_replace('/^(.*)(\/\/)([^\/]*)(\.?)(' . request()->rootDomain() . ')(.*)$/i', '${1}${2}' . $this->globalConfig['web_mobile_domain'] . '.${5}${6}', request()->domain());
  55. $this->assign('mobile_domain',$mobile_domain);
  56. }
  57. $web_basehost = preg_replace('/^(([^\:\.]+):)?(\/\/)?([^\/\:]*)(.*)$/i', '${1}${3}${4}', $this->globalConfig['web_basehost']);
  58. $this->assign('web_basehost',$web_basehost);
  59. return $this->fetch('seo/sitemap');
  60. }
  61. /**
  62. * 生成相应的搜索引擎sitemap
  63. */
  64. public function create($ver = 'xml')
  65. {
  66. if (empty($ver)) {
  67. sitemap_all();
  68. } else {
  69. $fun_name = 'sitemap_'.$ver;
  70. $fun_name();
  71. }
  72. }
  73. }