Class **Phalcon\\Mvc\\Application** =================================== *extends* abstract class :doc:`Phalcon\\Di\\Injectable ` *implements* :doc:`Phalcon\\Events\\EventsAwareInterface `, :doc:`Phalcon\\Di\\InjectionAwareInterface ` .. role:: raw-html(raw) :format: html :raw-html:`Source on GitHub` This component encapsulates all the complex operations behind instantiating every component needed and integrating it with the rest to allow the MVC pattern to operate as desired. .. code-block:: php registerModules(array( 'frontend' => array( 'className' => 'Multiple\Frontend\Module', 'path' => '../apps/frontend/Module.php' ), 'backend' => array( 'className' => 'Multiple\Backend\Module', 'path' => '../apps/backend/Module.php' ) )); } } $application = new Application(); $application->main(); Methods ------- public **__construct** ([:doc:`Phalcon\\DiInterface ` $dependencyInjector]) public **useImplicitView** (*unknown* $implicitView) By default. The view is implicitly buffering all the output You can full disable the view component using this method public **registerModules** (*array* $modules, [*unknown* $merge]) Register an array of modules present in the application .. code-block:: php registerModules(array( 'frontend' => array( 'className' => 'Multiple\Frontend\Module', 'path' => '../apps/frontend/Module.php' ), 'backend' => array( 'className' => 'Multiple\Backend\Module', 'path' => '../apps/backend/Module.php' ) )); public *array* **getModules** () Return the modules registered in the application public *array|object* **getModule** (*string* $name) Gets the module definition registered in the application via module name public **setDefaultModule** (*unknown* $defaultModule) Sets the module name to be used if the router doesn't return a valid module public **getDefaultModule** () Returns the default module name public :doc:`Phalcon\\Http\\ResponseInterface ` |boolean **handle** ([*string* $uri]) Handles a MVC request public **setDI** (:doc:`Phalcon\\DiInterface ` $dependencyInjector) inherited from Phalcon\\Di\\Injectable Sets the dependency injector public **getDI** () inherited from Phalcon\\Di\\Injectable Returns the internal dependency injector public **setEventsManager** (:doc:`Phalcon\\Events\\ManagerInterface ` $eventsManager) inherited from Phalcon\\Di\\Injectable Sets the event manager public **getEventsManager** () inherited from Phalcon\\Di\\Injectable Returns the internal event manager public **__get** (*unknown* $propertyName) inherited from Phalcon\\Di\\Injectable Magic method __get