效果展示
打开 \include\arc.sglistview.class.PHP 找到
Fields['typeid'] = $this->TypeID;
在它的下面加入
Fields['nativeplace'] = $this->searchArr['nativeplace'];
打开 \include\extend.func.PHP 在最下面增加个方法
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处的标签写法
PHP">{dede:field.nativeplace function=GetSysEnum(@me)/}_{dede:field.title/}_{dede:global.cfg_webname/}
教程结束。