Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Setup router
- $container->router[] = $admin = new RouteList('Admin');
- $admin[] = new Route('admin/<presenter>/<action>', 'SignIn:default');
- $callback = new PageRouteCallback($container->database);
- $container->router[] = $front = new RouteList('Front');
- $front[] = new Route('[<page>]', array(
- 'presenter' => 'Page',
- 'action' => 'default',
- 'page' => $callback->getCallbacks()
- ));
Advertisement
Add Comment
Please, Sign In to add comment