Reputation: 31
How to redirect in models or not in contrroler? use standart zend redirector helper
$redirector = new Zend_Controller_Action_Helper_Redirector();
$redirector->gotoUrl('/');
Upvotes: 1
Views: 870
Reputation: 1485
You should never redirect from a model, redirection should only occur in controllers. Models should be designed in a black box mannor, independant of the controller.
Upvotes: 5