Copyright @ 2015-2020 織夢園 版權所有 Power by DedeCms
魯ICP備15039853號-1

模板標簽 TAG標簽 網站地圖 XML地圖 今日更新 返回頂部
/** * 獲取某欄目的url * * @param array $typeinfos 欄目信息 * @return string */ function GetOneTypeUrlA($typeinfos) { global $dsql; if($typeinfos['ispart']==1) { $typeinfos = $dsql->GetOne('select * from idea_arctype where reid='.$typeinfos['id'].' ORDER BY sortrank'); } return GetTypeUrl($typeinfos['id'],MfTypedir($typeinfos['typedir']), $typeinfos['isdefault'],$typeinfos['defaultname'], $typeinfos['ispart'],$typeinfos['namerule2'], $typeinfos['moresite'],$typeinfos['siteurl'],$typeinfos['sitepath']); } |