I am using a "multi module" MVC structure for my PhalconPHP application.
One issue I am trying to figure out is how I can configure my "Main Layout" view to be above the module view folders.
In other words I want one master "Main Layout" (as described here) and I want all my modules to output their views at "Controller View" level within that main layout view.
At default it appears the Main Layout view is being taken from
[app]
[module1]
[controllers]
[models]
[views]
(main layout is coming from here)
[module2]
[controllers]
[models]
[views]
(main layout is coming from here)
[views]
(master main layout should come from here?)
I hope this makes sense!