Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created March 18, 2015 14:21
Show Gist options
  • Save Kcko/504e130d35c840d1c688 to your computer and use it in GitHub Desktop.
Save Kcko/504e130d35c840d1c688 to your computer and use it in GitHub Desktop.
Nette - routování - překladová tabulka
<?php
$router[] = new Route('<presenter galerie|blog|novinky|ubytovani>/<action>[/<id>]', array(
'presenter' => array(
Route::FILTER_TABLE => array(
// řetězec v URL => presenter
'galerie' => 'Gallery',
'blog' => 'Blog',
'novinky' => 'News',
'ubytovani' => 'Accommodation'
)),
'action' => 'default'
));
$router[] = new Route('<presenter>/<action>[/<id>]', array(
'presenter' => 'Page',
'action' => 'default'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment