Guest User

Untitled

a guest
Feb 19th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. $ctrl = Zend_Controller_Front::getInstance();
  2. $router = $ctrl->getRouter();
  3.  
  4.         //Create routes
  5.         $router->addRoute('neighbourNews', new Zend_Controller_Router_Route(
  6.                         'page/:pageId/:articleId',
  7.                         array('controller' => 'news',
  8.                             'action' => 'neighbour',
  9.                             'pageId' => '0', 'articleId' => '0')));
Add Comment
Please, Sign In to add comment