X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/f05ea577f42c5ad4a62ff25ec62fbb60c550ee26..7d74bf781c3db408d26b200c72fbbb85371f0ed0:/lib/output.php diff --git a/lib/output.php b/lib/output.php index 0a548500..9d4b7502 100644 --- a/lib/output.php +++ b/lib/output.php @@ -1,6 +1,7 @@ '.$aFeature['wikipedia'].''; } return ''; } -function detailsLink($aFeature, $sTitle=false) +function detailsLink($aFeature, $sTitle = false) { if (!$aFeature['place_id']) return ''; return ''.($sTitle?$sTitle:$aFeature['place_id']).''; } +function detailsPermaLink($aFeature, $sRefText = false) +{ + $sOSMType = formatOSMType($aFeature['osm_type'], false); + + if ($sOSMType) { + $sLabel = $sRefText ? $sRefText : $sOSMType.' '.$aFeature['osm_id']; + return ''.$sLabel.''; + } + return ''; +}