An example application, a.k.a. skeleton for getting started with fhooe/router: the simple object-oriented router developed for PHP classes in the Media Technology and Design program at the University of Applied Sciences Upper Austria. This skeleton and the library behind it are primarily designed for educational purposes (learning the concept of routing and object-oriented principles). Use it for "public" applications at your own risk.
Use Composer to create a new project containing the skeleton files:
composer create-project fhooe/fhooe-router-skeleton path/to/install
Composer will create a project in the specified path/to/install
directory.
The router invocation happens in public/index.php
. This front controller file receives all the requests since the associated .htaccess
file will redirect everything to it.
fhooe/router can be used in two ways:
-
Instantiate the
Router
class.$router = new Router();
-
Define routes using the
get()
andpost()
methods. Supply a URI pattern to match against and a callback that is executed when the pattern and protocol match.$router->get("/", function() { // e.g., load a view });
-
Set a 404 callback to load a view or trigger behavior when no route matches.
$router->set404Callback(function() { // e.g., load a 404 view });
-
Optional: define a base path if your application is not located in your server's document root.
$router->setBasePath("/path/to/your/files");
-
Run the router. This will fetch the current URI, match it against the defined routes, and execute them if a match is found.
$router->run();
-
Invoke the static method. Provide a base path as an argument if your project is not located in your server's document root. The method returns the route as a string in the form of
PROTOCOL /pattern
, e.g.,GET /
, when a GET request was made to the root directory.$route = Router::getRoute("/path/to/your/files");
-
Use a conditional expression to decide what to do with the matched route.
switch($route) { case "GET /": // e.g., load a view break; default: // e.g., load the 404 view break; }
Simple example view files in the form of HTML and PHP files are located in the views
directory together with Twig examples for cleaner output.
Three Twig extensions have been added.
RouterExtension
provides the functionsurl_for()
andget_base_path()
in templates for generating URLs and retrieving the base path from theRouter
object.SessionExtension
provides the functionsession(key)
for retrieving entries in the$_SESSION
superglobal.DebugExtension
provides the functiondump()
for dumping variables in templates (similar tovar_dump()
).
For taking a quick look, you can use the PHP built-in web server:
cd path/to/install
composer start
Navigate to http://localhost:8888/ in your browser to see the application in action.
If you'd like to contribute, please refer to CONTRIBUTING for details.
fhooe/router-skeleton is licensed under the MIT license. See LICENSE for more information.