vote up 0 vote down star

I've chosen to move Form processing from Controller to MyForm class, in order to follow ThinController/FatModel rule. But some of my code in Zend_Form class needs to perform a redirect.

In Zend_Controller_Action my redirect was:

$this->_redirect('/');

What would it become in Zend_Form?

flag

79% accept rate

2 Answers

vote up 2 vote down check
$redirector =
    Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
$redirector->gotoSimple('index','index');
link|flag
vote up 3 vote down

It's not a model component, if you redirect from within it. You should only do redirects from the presentation layer.


What would be an example of this? Lets suppose that currently I have a simple RecordForm class, and in its init() I am doing redirect after lines where I check record update was successfull.

You could let the function return a value indicating success/failure, and let the caller (the controller) perform a redirect based on the result.

link|flag
What would be an example of this? Lets suppose that currently I have a simple RecordForm class, and in its init() I am doing redirect after lines where I check record update was successfull. – PHP thinker Apr 6 at 19:39
Actually Zend_Form isn't a model. It's a controller + view. I'd say it's similar to a TextInput in a desktop application. It does some displaying (view) and some validation (controller for the TextInput only, not an action controller). – Jaka JanĨar Apr 7 at 9:42
Zend_Form does not do any displaying, there are helpers in Zend_View that present the form to the world. – X-Istence May 15 at 18:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.