該系統的標簽{pboot:position}是面包屑標簽。

可以通過修改參數修改部分的內容,如:{pboot:position indextext=’Home’}。

但是,部分頁面,如搜索,登錄,注冊等頁面無法通過這種形式修改,需要修改文件改成英文。

1,找到對應的文件,修改成英文。

操作:通過查詢? “parserPositionLabel”? 或者? “// CMS當前位置標簽解析”? 找到對應的代碼,將中文修改成英文或其他語言文字

首頁:

路徑:/apps/home/controller/IndexController.php

代碼大約在224行。

$content?=?$this->parser->parserPositionLabel($content, - 1,?'首頁', SITE_INDEX_DIR .?'/');?// CMS當前位置標簽解析

 

搜索:

路徑:/apps/home/controller/SearchController.php

代碼大約在39行。

$content?=?$this->parser->parserPositionLabel($content, 0,?'搜索', Url::home('search'));?// CMS當前位置標簽解析

 

我的評論:

路徑:/apps/home/controller/CommentController.php

代碼大約在124行。

$content?=?$this->parser->parserPositionLabel($content, 0,?'我的評論', Url::home('comment/my'));?// CMS當前位置標簽解析

 

會員中心,登錄,注冊,資料修改:

路徑:/apps/home/controller/MemberController.php

代碼大約在102,254,273,382行。

$content?=?$this->parser->parserPositionLabel($content, 0,?'會員登錄', Url::home('member/login'));?// CMS當前位置標簽解析
$content?=?$this->parser->parserPositionLabel($content, 0,?'會員注冊', Url::home('member/register'));?// CMS當前位置標簽解析
$content?=?$this->parser->parserPositionLabel($content, 0,?'個人中心', Url::home('member/ucenter'));?// CMS當前位置標簽解析
$content?=?$this->parser->parserPositionLabel($content, 0,?'資料修改', Url::home('member/umodify'));?// CMS當前位置標簽解析