Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- use Nette\Application\Routers\Route;
- class MyRouter extends Nette\Application\Routers\RouteList
- {
- public function __construct()
- {
- parent::__construct();
- $this[] = new Route('index.php', ':Main:Homepage:default', Route::ONE_WAY);
- $this[] = new Route('prefix/<presenter=Main:Homepage>/<action=default>[/<id=>]');
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment