]> git.openstreetmap.org Git - nominatim.git/blobdiff - website/polygons.php
factor out parameter parsing into its own class
[nominatim.git] / website / polygons.php
index b855214a89a6ece1e65e762ef40f67e0a0ef28e8..1e0f5f7ea757012d329afec46967f9d6f19b2162 100755 (executable)
@@ -5,12 +5,14 @@
        require_once(CONST_BasePath.'/lib/output.php');
        ini_set('memory_limit', '200M');
 
-       $oDB =& getDB();
+       $oParams = new ParameterParser();
 
        $sOutputFormat = 'html';
-       $iDays = getParamInt('days', 1);
-       $bReduced = getParamBool('reduced', false);
-       $sClass = getParamString('class', false);
+       $iDays = $oParams->getInt('days', 1);
+       $bReduced = $oParams->getBool('reduced', false);
+       $sClass = $oParams->getString('class', false);
+
+       $oDB =& getDB();
 
        $iTotalBroken = (int) chksql($oDB->getOne('select count(*) from import_polygon_error'));