X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f05ea577f42c5ad4a62ff25ec62fbb60c550ee26..57ae3d03a1ccfb464216b58e7e70abaf3a3d8c48:/lib/output.php diff --git a/lib/output.php b/lib/output.php index 0a548500..8715efbc 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 detailsLink($aFeature, $sRefText); +}