|
ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Inheritance diagram for Slim\RouteGroup:
Collaboration diagram for Slim\RouteGroup:Public Member Functions | |
| __construct ($pattern, $callable) | |
| Create a new RouteGroup. More... | |
| __invoke (App $app=null) | |
| Invoke the group to register any Routable objects within it. More... | |
Public Member Functions inherited from Slim\Routable | |
| getMiddleware () | |
| Get the middleware registered for the group. More... | |
| getPattern () | |
| Get the route pattern. More... | |
| setContainer (ContainerInterface $container) | |
| Set container for use with resolveCallable. More... | |
| add ($callable) | |
| Prepend middleware to the middleware collection. More... | |
| setPattern ($newPattern) | |
| Set the route pattern. More... | |
Public Member Functions inherited from Slim\Interfaces\RouteGroupInterface | |
| getPattern () | |
| Get route pattern. More... | |
| add ($callable) | |
| Prepend middleware to the group middleware collection. More... | |
| __invoke (App $app) | |
| Execute route group callable in the context of the Slim App. More... | |
Additional Inherited Members | |
Protected Attributes inherited from Slim\Routable | |
| $callable | |
| $container | |
| $middleware = [] | |
| $pattern | |
Definition at line 19 of file RouteGroup.php.
| Slim\RouteGroup::__construct | ( | $pattern, | |
| $callable | |||
| ) |
Create a new RouteGroup.
| string | $pattern | The pattern prefix for the group |
| callable | $callable | The group callable |
Definition at line 27 of file RouteGroup.php.
| Slim\RouteGroup::__invoke | ( | App | $app = null | ) |
Invoke the group to register any Routable objects within it.
| App | $app | The App instance to bind/pass to the group callable |
Definition at line 38 of file RouteGroup.php.