victor
victor

Reputation: 31

Zend action helper redirector

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

Answers (1)

Garry
Garry

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

Related Questions