fwtrash/inc/router.inc.php

16 lines
365 B
PHP
Raw Normal View History

2024-03-29 14:47:35 +00:00
<?php
$_page = isset($_GET['p']) ? $_GET['p'] : '';
$routes = [
'doppelklinge' => 'doppelklinge',
'vermessung' => 'vermessung',
'knochen' => 'knochen',
'default' => 'default'
];
ob_start();
require_once __DIR__ . "/../pages/{$routes[array_key_exists($_page, $routes)?$_page:'default']}.php";
$_content = ob_get_contents();
ob_end_clean();