織夢DedeCms地區(qū)聯(lián)動在當(dāng)前頁面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處的標(biāo)簽調(diào)用代碼
<title>{dede:field.nativeplace function=GetSysEnum(@me)/}_{dede:field.title/}_{dede:global.cfg_webname/}</title>
聲明:
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標(biāo)注作者與來源。
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標(biāo)注作者與來源。
THE END