Guest User

Untitled

a guest
Oct 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // set up a simple "hello world" routing
  2. $di->get('router_map')->add('home', '/', array(
  3. 'values' => array(
  4. 'controller' => 'hello',
  5. 'action' => 'world',
  6. ),
  7. ));
  8.  
  9. // map the 'hello_world' controller value a particular class
  10. $di->params['Aura\Web\ControllerFactory']['map']['hello'] = 'Aura\Framework\Web\Hello\Page';
Add Comment
Please, Sign In to add comment