Symfony 1 - MVC - How does it work?
In this tutorial I will show you how the symfony framework works with the MVC pattern. Each application, for example the frontend, has one or several modules. Each module has one or several Controllers and Views. The first Controller of a module is in the actions directory and the actions.class.php file that can be found there: symfony > apps > frontend > modules > moduleName > actions > actions.class.php The Views in the templates directory and they are suffixed by the Success word, except for the _form file. ...