Posts Tagged ‘modules’

The MVC paradigm, adopted in symfony from top to bottom, brings highly decoupled components meant to be used independently.
In a symfony application, modules are flexible and allow complex manipulations like :

forwarding to another module/action and delegate request processing
rendering a module/action in isolation (like an email generation module)

Unfortunately, this agility is only available inside a project [...]