Expected time for an CakePHP MVC form/controller and db make up
- by hephestos
I would like to know, what is an average time for building a form in MVC pattern with for example CakePHP.
I build 8 functions, two of them do custom queries, return json data, split them, expand them in a model in memory and delivers to the view. Those are three queries if you consider and an array to feed view for making some combo box. Why? all these, because I have data from json and I split them in order to make row of data like a table.
Like that I changed a bit the edit.ctp but not a lot.
And I created a javascript outside, with three functions. One collects data the other upon a change of a combo returnes the selected values, and does also some redirection flow.
All this, in average how much time should it take ?