I currently have code in my controller which retrieves 3 types of entities from a db, in order to populate 3 select field. The controller also takes responsibility for invoking the form objects validate method, and upon success, it instantiates and sets an entity's properties from the form inputs and calls on a data mapper to persist it. I have a feeling that my controller is way too fat. Any suggestions on where I should put my form preparation and processing code? Should I move it into the form object? Thx in advance for your time!
|
I prefer to put form processing in the form itself. So I create a process() method in the form so then you can keep all of the form logic encapsulated in the form object. For example in your controller:
|
|||||
|
|
You might want to take a look at Using Zend_Form in Your Models by Matthew Weier O'Phinney. It explains how to move this kind of logic from your controller into the model. |
|||
|
|
For your database tables you should create models - these should contain the logic to get and set data into that table. So in this instance the model should be responsible for getting an array of values which is then passed to the controller and then to the form.
You can then do this in your controller
You could also create a specific form class which extends As an example, below is a function from a model of mine to do just this:
|
|||
|
|