Router: Add all routes regardless of the URI

This commit is contained in:
Riyyi
2022-11-04 15:33:30 +01:00
parent a0d302daec
commit c18c80d732
-7
View File
@@ -40,15 +40,8 @@ class Router {
// Process basic routes
foreach (self::$routes as $route) {
// If route does not match the base url
if ($route[0] != $path) {
continue;
}
// ["/example/my-page", "ExampleController", "action", "" : ["view", "title", "description"]],
self::addBasicRoute(['GET', 'POST'], $route);
break;
}
self::createNavigation();