Expected time for an CakePHP MVC form/controller and db make up

Posted by hephestos on Programmers See other posts from Programmers or by hephestos
Published on 2012-06-23T22:47:20Z Indexed on 2012/06/24 3:23 UTC
Read the original article Hit count: 263

Filed under:
|
|

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 ?

© Programmers or respective owner

Related posts about project-management

Related posts about agile