X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/52922397147d8e7466147edfb7cbdaffc6f34498..def573d7b4167b74437ec564922a35a33b93fea7:/lib/ParameterParser.php 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; + } }