X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/bd04ce62e039b090d4b5ec2c0baa767defde2fc4..71ae7f10f74251ebef13abe8d186276e6255b5d4:/lib/DebugHtml.php 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); }