Create Custom Middleware
Write your own middleware for this framework
To write custom middleware for this framework, one has to make sure the API constraint is satisfied. The recommended way to create middleware is to extend the sirJuni\Framework\Middleware\Middleware
class, which is an abstract class with 2 methods.
set_fallback_route($route)
: This method is used to configure a fallback route, to which a redirect is caused when the constraints in middleware fail. To save$route
we have to make a static variable to store it.handle($request)
: This method is used by theRouter
to give the Middleware control of the request. So, this serves as an entry point into the middleware and it would be useless to create a middleware without this method.
A code example of creating a middleware would be
The handle($request)
function should return TRUE
if conditions meet, otherwise just cause a redirect to fallback_route.
Last updated