X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/52922397147d8e7466147edfb7cbdaffc6f34498..15a1666f8a1e19c338015fccd502be6cfd5c24df:/lib/ParameterParser.php?ds=inline diff --git a/lib/ParameterParser.php b/lib/ParameterParser.php index cb03c6cc..32a848b9 100644 --- a/lib/ParameterParser.php +++ b/lib/ParameterParser.php @@ -118,4 +118,15 @@ class ParameterParser $aLangPrefOrder['type'] = 'type'; return $aLangPrefOrder; } + + public function hasSetAny($aParamNames) + { + foreach ($aParamNames as $sName) { + if ($this->getBool($sName)) { + return true; + } + } + + return false; + } }