Files
thetool/Layout/default/Building/include/building_popup.php
2023-02-03 13:59:54 +01:00

36 lines
626 B
PHP

<?php
ob_start();
?>
<div class="font-weight-bold">
{{STREET}}<br />
{{ZIP}} {{CITY}}
</div>
<hr />
<table>
<tr>
<th>Objekt-ID:</th>
<td>{{CODE}}</td>
</tr><tr>
<th>Gebäudetyp:</th>
<td>{{TYPE}}</td>
</tr><tr>
<th>POP:</th>
<td>{{POPNAME}}</td>
</tr><tr>
<th>GPS:</th>
<td><a href="https://maps.google.com/maps?t=k&q=loc:{{GPS}}">{{GPS}}</a></td>
</tr><tr>
<th>Kontakt:</th>
<td>{{CONTACT}}</td>
</tr><tr>
<th>Telefon:</th>
<td>{{PHONE}}</td>
</tr><tr>
<th>Email:</th>
<td>{{EMAIL}}</td>
</tr>
</table>
<?=str_replace("\n"," ",ob_get_clean())?>