]> git.openstreetmap.org Git - nominatim.git/blob - website/deletable.php
fix function declaration errors according to PSR2 coding style guide
[nominatim.git] / website / deletable.php
1 <?php
2     require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
3     require_once(CONST_BasePath.'/lib/init-website.php');
4     require_once(CONST_BasePath.'/lib/log.php');
5     require_once(CONST_BasePath.'/lib/output.php');
6     ini_set('memory_limit', '200M');
7
8     $sOutputFormat = 'html';
9
10     $oDB =& getDB();
11
12     $sSQL = "select placex.place_id, calculated_country_code as country_code, name->'name' as name, i.* from placex, import_polygon_delete i where placex.osm_id = i.osm_id and placex.osm_type = i.osm_type and placex.class = i.class and placex.type = i.type";
13     $aPolygons = chksql($oDB->getAll($sSQL), "Could not get list of deleted OSM elements.");
14
15     if (CONST_DEBUG) {
16         var_dump($aPolygons);
17         exit;
18     }
19 ?>
20 <!DOCTYPE html>
21 <html>
22 <head>
23     <meta charset="utf-8"/>
24     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
25     
26     <title>Nominatim Deleted Data</title>
27     
28     <meta name="description" content="List of OSM data that has been deleted" lang="en-US" />
29
30 </head>
31
32 <body>
33 <style type="text/css">
34 table {
35     border-width: 1px;
36     border-spacing: 0px;
37     border-style: solid;
38     border-color: gray;
39     border-collapse: collapse;
40     background-color: white;
41     margin: 10px;
42 }
43 table th {
44     border-width: 1px;
45     padding: 2px;
46     border-style: inset;
47     border-color: gray;
48     border-left-color: #ddd;
49     border-right-color: #ddd;
50     background-color: #eee;
51     -moz-border-radius: 0px 0px 0px 0px;
52 }
53 table td {
54     border-width: 1px;
55     padding: 2px;
56     border-style: inset;
57     border-color: gray;
58     border-left-color: #ddd;
59     border-right-color: #ddd;
60     background-color: white;
61     -moz-border-radius: 0px 0px 0px 0px;
62 }
63 </style>
64
65 <p>Objects in this table have been deleted in OSM but are still in the Nominatim database.</p>
66
67 <table>
68 <?php
69     if (!$aPolygons) exit;
70     echo "<tr>";
71 //var_dump($aPolygons[0]);
72     foreach ($aPolygons[0] as $sCol => $sVal) {
73         echo "<th>".$sCol."</th>";
74     }
75     echo "</tr>";
76     foreach ($aPolygons as $aRow) {
77         echo "<tr>";
78         foreach ($aRow as $sCol => $sVal) {
79             switch ($sCol) {
80                 case 'osm_id':
81                     echo '<td>'.osmLink($aRow).'</td>';
82                     break;
83                 case 'place_id':
84                     echo '<td>'.detailsLink($aRow).'</td>';
85                     break;
86                 default:
87                     echo "<td>".($sVal?$sVal:'&nbsp;')."</td>";
88                     break;
89             }
90         }
91         echo "</tr>";
92     }
93 ?>
94 </table>
95
96
97
98 </body>
99 </html>