您好,欢迎来到菜鸟吧源码网-本站资源仅供学习与参考,禁止用于商业或违法行为!
  • 首 页
  • 下载APP
  • 公告:菜鸟吧APP于2024.9.15正式上线,请首页右上角进入下载,本站资源均来源于互联网及会员投稿发布,所有资源仅供学习参考研究使用,请勿商用或其它非法用途,商用请购买正版,否则产生一切后果由用户自行承担!谢谢!

     

    当前位置:主页 > 站长学堂 > pbootcms >
    PbootCMS英文站搜索效果页面包屑显示中文的修改方法
    时间:2024-11-23 19:50 作者:菜鸟哥 浏览:收藏 挑错 打印

    PbootCMS英文站搜索效果页面包屑显示中文的修改方法

    修改内容

    打开\apps\home\controller\SearchController.php,把里面的代码全部替换成以下(分为2x和3x版本,对应版本替换):

    pb2.1.1版本替换

    <?php
    /**
     * @copyright (C)2020-2099 Hnaoyun Inc.
     * @author XingMeng
     * @email hnxsh@foxmail.com
     * @date 2020年3月8日
     *  搜索控制器     
     */
    namespace app\home\controller;
    
    use core\basic\Controller;
    
    class SearchController extends Controller
    {
    
        protected $parser;
    
        protected $htmldir;
    
        public function __construct()
        {
            $this->parser = new ParserController();
            $this->htmldir = $this->config('tpl_html_dir') ? $this->config('tpl_html_dir') . '/' : '';
        }
    
        // 内容搜索@mk-lang 增加英语
        public function index()
        {
            if (cookie('lg') == 'cn') {
                $searchtpl = request('searchtpl');
                if (! preg_match('/^[\w]+\.html$/', $searchtpl)) {
                    $searchtpl = 'search.html';
                }
                
                $content = parent::parser($this->htmldir . $searchtpl); // 框架标签解析
                $content = $this->parser->parserBefore($content); // CMS公共标签前置解析
                $pagetitle = get('keyword') ? get('keyword') . '-' : '';
                $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . '搜索结果-{pboot:sitetitle}-{pboot:sitesubtitle}', $content);
                $content = $this->parser->parserPositionLabel($content, 0, '搜索', homeurl('search')); // CMS当前位置标签解析
                $content = $this->parser->parserSpecialPageSortLabel($content, - 1, '搜索结果', homeurl('search')); // 解析分类标签
                $content = $this->parser->parserSearchLabel($content); // 搜索结果标签
                $content = $this->parser->parserAfter($content); // CMS公共标签后置解析
                echo $content; // 搜索页面不缓存
                exit();
            } else {
                $searchtpl = request('searchtpl');
                if (! preg_match('/^[\w]+\.html$/', $searchtpl)) {
                    $searchtpl = 'search.html';
                }
                
                $content = parent::parser($this->htmldir . $searchtpl); // 框架标签解析
                $content = $this->parser->parserBefore($content); // CMS公共标签前置解析
                $pagetitle = get('keyword') ? get('keyword') . '-' : '';
                $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . 'The search results-{pboot:sitetitle}-{pboot:sitesubtitle}', $content);
                $content = $this->parser->parserPositionLabel($content, 0, 'Search', homeurl('search')); // CMS当前位置标签解析
                $content = $this->parser->parserSpecialPageSortLabel($content, - 1, 'The search results', homeurl('search')); // 解析分类标签
                $content = $this->parser->parserSearchLabel($content); // 搜索结果标签
                $content = $this->parser->parserAfter($content); // CMS公共标签后置解析
                echo $content; // 搜索页面不缓存
                exit();
            }
        }
    }

    pb3.0.3版本替换

    <?php
    /**
     * @copyright (C)2020-2099 Hnaoyun Inc.
     * @author XingMeng
     * @email hnxsh@foxmail.com
     * @date 2020年3月8日
     *  搜索控制器     
     */
    namespace app\home\controller;
    
    use core\basic\Controller;
    use core\basic\Url;
    
    class SearchController extends Controller
    {
    
        protected $parser;
    
        protected $htmldir;
    
        public function __construct()
        {
            $this->parser = new ParserController();
            $this->htmldir = $this->config('tpl_html_dir') ? $this->config('tpl_html_dir') . '/' : '';
        }
    
        // 内容搜索
        public function index()
        {
            if (cookie('lg') == 'cn') {
                $searchtpl = request('searchtpl');
                if (! preg_match('/^[\w]+\.html$/', $searchtpl)) {
                    $searchtpl = 'search.html';
                }
                
                $content = parent::parser($this->htmldir . $searchtpl); // 框架标签解析
                $content = $this->parser->parserBefore($content); // CMS公共标签前置解析
                $pagetitle = get('keyword') ? get('keyword') . '-' : '';
                $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . '搜索结果-{pboot:sitetitle}-{pboot:sitesubtitle}', $content);
                $content = $this->parser->parserPositionLabel($content, 0, '搜索', Url::home('search')); // CMS当前位置标签解析
                $content = $this->parser->parserSpecialPageSortLabel($content, - 1, '搜索结果', Url::home('search')); // 解析分类标签
                $content = $this->parser->parserSearchLabel($content); // 搜索结果标签
                $content = $this->parser->parserAfter($content); // CMS公共标签后置解析
                echo $content; // 搜索页面不缓存
                exit();
            } else {
                $searchtpl = request('searchtpl');
                if (! preg_match('/^[\w]+\.html$/', $searchtpl)) {
                    $searchtpl = 'search.html';
                }
                
                $content = parent::parser($this->htmldir . $searchtpl); // 框架标签解析
                $content = $this->parser->parserBefore($content); // CMS公共标签前置解析
                $pagetitle = get('keyword') ? get('keyword') . '-' : '';
                $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . 'The search results-{pboot:sitetitle}-{pboot:sitesubtitle}', $content);
                $content = $this->parser->parserPositionLabel($content, 0, 'Search', Url::home('search')); // CMS当前位置标签解析
                $content = $this->parser->parserSpecialPageSortLabel($content, - 1, 'The search results', Url::home('search')); // 解析分类标签
                $content = $this->parser->parserSearchLabel($content); // 搜索结果标签
                $content = $this->parser->parserAfter($content); // CMS公共标签后置解析
                echo $content; // 搜索页面不缓存
                exit();
            }
        }
    }

    替换效果

    PbootCMS英文站搜索效果页面包屑显示中文的修改方法


    郑重声明:
    本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。 若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
    我们不承担任何技术及版权问题,且不对任何资源负法律责任。
    如无法下载,联系站长索要。
    如有侵犯您的版权,请给我们来信:cainiaovip8@qq.com,我们尽快处理。

    pbootcms模板报错提示PHP Warning: Unknown: open_basedir restrictionpbootcms模板报错提示PHP Warning: Unk
    PbootCMS后台访问地址及默认帐号密码PbootCMS后台访问地址及默认帐号密码
    PbootCMS设置当前站点模板,模板子目录,黑白名单,敏感词过滤等PbootCMS设置当前站点模板,模板子目录,