Guest User

Untitled

a guest
Jul 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $route = new Zend_Controller_Router_Route('user/reset_password', array(
  2. 'module' => 'default',
  3. 'controller' => 'user',
  4. 'action' => 'resetpassword'
  5. ));
  6. $front_controller->getRouter()->addRoute('reset_password', $route);
  7.  
  8. interface Zend_Controller_Router_Route_Interface {
  9. public function match($path);
  10. public function assemble($data = array(), $reset = false, $encode = false);
  11. public static function getInstance(Zend_Config $config);
  12. }
Add Comment
Please, Sign In to add comment