織夢DedeCms地區(qū)聯動在當前頁面title加入選擇的地區(qū)名
打開 \include\arc.sglistview.class.php 搜索
$this->Fields['typeid'] = $this->TypeID;
在它下面加入代碼
$this->Fields['nativeplace'] = $this->searchArr['nativeplace'];
打開 \include\extend.func.php 在最下面增加個方法
if ( ! function_exists('GetSysEnum'))
{
function GetSysEnum($evalue, $egroup)
{
global $dsql;
$egroup = isset($egroup) ? $egroup : 'nativeplace';
if($evalue % 500 == 0)
{
$rowtop = $dsql->GetOne("select ename from `SzsFox_sys_enum` where egroup='".$egroup."' and evalue='".$evalue."'");
return $rowtop['ename'];
}
else
{
(preg_match("#\.#", $evalue)) ? $rowre = $dsql->GetOne("select ename from `SzsFox_sys_enum` where egroup='".$egroup."' and evalue='".( floor($evalue-($evalue%500))+1 )."'") : $rowre['ename'] = '';
$rowtop = $dsql->GetOne("select ename from `SzsFox_sys_enum` where egroup='".$egroup."' and evalue='".( floor($evalue-($evalue%500)) )."'");
$rowson = $dsql->GetOne("select ename from `SzsFox_sys_enum` where egroup='".$egroup."' and evalue='".$evalue."'");
if(is_array($rowson))
{
return $rowtop['ename'].$rowre['ename'].$rowson['ename'];
}
}
}
}
列表模板title處的標簽調用代碼
<title>{dede:field.nativeplace function=GetSysEnum(@me)/}_{dede:field.title/}_{dede:global.cfg_webname/}</title>
聲明:
1.本站主要是為了記錄工作、學習中遇到的問題,可能由于本人技術有限,內容難免有紕漏,一切內容僅供參考。
2.本站部分內容來源互聯網,如果有圖片或者內容侵犯您的權益請聯系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網頁格式,轉載時請標注作者與來源。
1.本站主要是為了記錄工作、學習中遇到的問題,可能由于本人技術有限,內容難免有紕漏,一切內容僅供參考。
2.本站部分內容來源互聯網,如果有圖片或者內容侵犯您的權益請聯系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網頁格式,轉載時請標注作者與來源。
THE END