Guest User

Untitled

a guest
Oct 11th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <?
  2.         $frontRouter[] = new Route('<presenter>[/<action>][/<id>]', array(
  3.             'presenter' => array(
  4.                 Route::VALUE => 'Page',
  5.                 Route::FILTER_TABLE => array(
  6.                     // řetězec v URL => presenter
  7.                     'pruvodce' => 'Guide',
  8.                    
  9.                 ),
  10.             ),
  11.             'action' => array(
  12.                 Route::VALUE => 'default',
  13.                 Route::FILTER_TABLE => array(
  14.                     // řetězec v URL => akce
  15.                     'krok2' => 'step2',
  16.                     'krok3' => 'step3',
  17.                     'krok4' => 'step4',
  18.                    
  19.                 ),
  20.             ),
  21.             'id' => NULL,
  22.         ));
Advertisement
Add Comment
Please, Sign In to add comment