Esempio n. 1
0
    $uri = intval($_REQUEST['id']);
} else {
    if (isset($_REQUEST['uri'])) {
        $uri = $_REQUEST['uri'];
    } else {
        $uri = NULL;
    }
}
try {
    $PAGE = new CMS_Page($uri);
} catch (Exception $e) {
    header('HTTP/1.1 404 Page Not Found');
    header('Content-type: text/plain');
    echo "404 Page Not Found\n\n";
    echo "Exception: " . $e->getMessage();
    exit;
}
unset($uri);
if (strlen($PAGE->redirect) > 0) {
    $msg = "This page is a redirect to '{$PAGE->redirect}'.";
    require_once 'notemplate.php';
} else {
    try {
        $PAGE->getTemplate();
    } catch (Exception $e) {
        header('Content-type: text/plain');
        echo $e->getMessage();
        exit;
    }
    require_once $PAGE->getTemplate();
}