Exemple #1
0
                    if ($page == "/") {
                        $page = "/index";
                    }
                    $GLOBALS['workspaceHTML'] = $class->inc("/src/Page{$page}.php");
                } else {
                    $GLOBALS['workspaceHTML'] = $page_response;
                }
                if ($GLOBALS['workspaceHTML'] === false || $GLOBALS['workspaceHTML'] == null) {
                    ob_start();
                    ser("Error", "The app '<strong>{$AppID}</strong>' does not have an Admin Page");
                    $error = ob_get_contents();
                    ob_end_clean();
                    $GLOBALS['workspaceHTML'] = "<div class='contents'>" . $error . "</div>";
                }
            }
        });
    }
    public static function statusRoutes()
    {
        /**
         * The default 404 page
         */
        self::$router->onHttpError(function ($code, $router) {
            if ($code == 404) {
                ser();
            }
        });
    }
}
\Lobby\Router::init();