1
0
Fork 0
OpenSim.land/pages/start.php

17 lines
476 B
PHP
Raw Normal View History

2021-11-01 04:59:48 +00:00
<?php
$HTML = new HTML();
$HTML->setHTMLTitle("Übersicht");
$HTML->importHTML("style/default/start.html");
$RegionManager = new RegionManager(0, 28);
2021-11-05 02:01:38 +00:00
2021-11-01 04:59:48 +00:00
$HTML->ReplaceLayoutInhalt("%%TopRegion%%", getTopRegionHTML($RegionManager->getNextRegion()));
while($region = $RegionManager->getNextRegion())
@$RUNTIME['RegionList'] .= getRegionHTML($region);
2021-11-01 07:12:10 +00:00
$HTML->ReplaceLayoutInhalt("%%RegionList%%", @$RUNTIME['RegionList']);
2021-11-01 04:59:48 +00:00
$HTML->build();
echo $HTML->ausgabe();
?>