Guest User

Untitled

a guest
Oct 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $di->get('router_map')->add('logs', '/logs', array(
  2. 'values' => array(
  3. 'controller' => 'irc',
  4. 'action' => 'index',
  5. ),
  6. ));
  7.  
  8. $di->get('router_map')->add('logs_month', '/logs/:month', array(
  9. 'params' => array(
  10. 'month' => '([a-zA-Z])',
  11. ),
  12. 'values' => array(
  13. 'controller' => 'irc',
  14. 'action' => 'month',
  15. ),
  16. ));
  17.  
  18. $di->params['Aura\Web\ControllerFactory']['map']['irc'] = 'Vendor\Package\Web\Irc\Page';
  19.  
  20.  
  21. //Error reporting 404 Not Found
Add Comment
Please, Sign In to add comment