Einchecken des Online-Codes

This commit is contained in:
2017-05-07 14:37:49 +00:00
parent 9c1d71cea6
commit 85cc95c574
635 changed files with 76260 additions and 0 deletions

17
inhalte/objekte_orig.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
if ( isset ( $_GET['t'] ) AND ( !empty ( $_GET['t'] ) ) )
{
if ('ao' == $_GET['t']) {
include "inhalte/objekte/ao.php";
} elseif ('ro' == $_GET['t']) {
include "inhalte/objekte/ro.php";
} elseif ('gs' == $_GET['t']) {
include "inhalte/objekte/gs.php";
}
}
else
{
include "inhalte/objekte/obj_std.php";
}
?>