Hello,
I'am currently checking out FuelPHP for new project, but I can't find answer for this question. Is it possible for modular web page to set one template? What I want to do, is to create biggest categories of project as modules but how can I call from module-controller template which is set in the app/views/ folder? I will be using Fuels template system.
Assuming you refer to Controller_Template, all file loads in FuelPHP are cascading.
So if you load view "templates/page" from a module, it will check the views folder of the module first, and if not found, it will check the views folders in all loaded packages (if exists), and finally the views folder in app.
So your modules can use global files without problems.