X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a885e7309ab1feba1e2ec7b183eb383e775c162e..8f0b3cb00f0d3f7b101a742e7480903ff0e89a2a:/lib/DebugHtml.php?ds=inline diff --git a/lib/DebugHtml.php b/lib/DebugHtml.php index 0f5af241..a600fae5 100644 --- a/lib/DebugHtml.php +++ b/lib/DebugHtml.php @@ -71,6 +71,21 @@ class Debug echo "\n"; } + public static function printGroupedSearch($aSearches, $aWordsIDs) + { + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + foreach ($aSearches as $iRank => $aRankedSet) { + foreach ($aRankedSet as $aRow) { + $aRow->dumpAsHtmlTableRow($aWordsIDs); + } + } + echo '
rankName TokensName NotAddress TokensAddress Notcountryoperatorclasstypepostcodehousenumber
'; + } + public static function printGroupTable($sHeading, $aVar) { echo ''.$sHeading.":\n"; @@ -138,6 +153,8 @@ class Debug $sPre = ', '; } } + } elseif (is_object($mVar) && method_exists($mVar, 'debugInfo')) { + Debug::outputVar($mVar->debugInfo(), $sPreNL); } else { Debug::outputSimpleVar($mVar); }