Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. $routes = array(
  3. 'routeA' => array(
  4. //config here
  5. )
  6. );
  7.  
  8. $routes['routeB'] = $routes['routeA'];
  9.  
  10. $config = array(
  11. 'router' => array(
  12. 'routes' => $routes
  13. )
  14. );
  15.  
  16. return $config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement