分类信息模型 的话从第1步开始,其他模型从第2步开始
1、打开 include/arc.sglistview.class.php 找到
$this->Fields['typeid'] = $this->TypeID;
在它的下面加入
$this->Fields['nativeplace'] = $this->searchArr['nativeplace'];
其他模型 (文章模型、图集模型、软件模型、商品模型) 不需要加第1步
2、打开 include/extend.func.php 在最下面增加个方法
if(!function_exists('GetSysEnum'))
{
function GetSysEnum($evalue, $egroup)
{
global $dsql;
$evalue = trim(ltrim($evalue, ","));
$egroup = isset($egroup) ? $egroup : 'nativeplace';
if($evalue % 500 == 0)
{
$rowtop = $dsql->GetOne("select ename from `dede_sys_enum` where egroup='".$egroup."' and evalue='".$evalue."'");
return $rowtop['ename'];
}
else
{
(preg_match("#.#", $evalue)) ? $rowre = $dsql->GetOne("select ename from `dede_sys_enum` where egroup='".$egroup."' and evalue='".( floor($evalue-($evalue%500))+1 )."'") : $rowre['ename'] = '';
$rowtop = $dsql->GetOne("select ename from `dede_sys_enum` where egroup='".$egroup."' and evalue='".( floor($evalue-($evalue%500)) )."'");
$rowson = $dsql->GetOne("select ename from `dede_sys_enum` where egroup='".$egroup."' and evalue='".$evalue."'");
if(is_array($rowson))
{
return $rowtop['ename'].$rowre['ename'].$rowson['ename'];
}
}
}
}
<title>{dede:field.nativeplace function=GetSysEnum(@me)/}</title>
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: 织梦地区联动在当前页面title加入选择的地区名