Maybe this may sound trivial (bear with me, please) but here is my question: I have a long controller module that I would want to split up or make more manageable . Most of the functions in this controllers are controller functions called from the frontend.
Now, I guess I could refactor the module and have some support functions and create a new module in the "modules" folder. This has brought me problems in windows environment, so I would try to avoid it.
I could create other controller modules and move some controller functions to them, but then I would need to update the frontend ajax calls.
Any ideas?
Thanks in advance.