HosipLan

Untitled

Jun 22nd, 2011
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1.  
  2.  
  3. use Nette\Application\Routers\Route;
  4.  
  5. class MyRouter extends Nette\Application\Routers\RouteList
  6. {
  7.  
  8.     public function __construct()
  9.     {
  10.         parent::__construct();
  11.  
  12.         $this[] = new Route('index.php', ':Main:Homepage:default', Route::ONE_WAY);
  13.         $this[] = new Route('prefix/<presenter=Main:Homepage>/<action=default>[/<id=>]');
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment