Table Of ContentsPrevious topic< Class Phalcon\Logger\Multiple Next topic |
Class Phalcon\Mvc\Application¶extends abstract class Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface 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. <?php
class Application extends \Phalcon\Mvc\Application
{
/\**
* Register the services here to make them general or register
* in the ModuleDefinition to make them module-specific
*/
protected function _registerServices()
{
}
/\**
* This method registers all the modules in the application
*/
public function main()
{
$this->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 ([Phalcon\DI $dependencyInjector]) public Phalcon\Mvc\Application useImplicitView (boolean $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, [boolean $merge]) Register an array of modules present in the application <?php
$this->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 Phalcon\Mvc\Application setDefaultModule (string $defaultModule) Sets the module name to be used if the router doesn’t return a valid module public string getDefaultModule () Returns the default module name public Phalcon\Http\ResponseInterface handle ([string $uri]) Handles a MVC request public setDI (Phalcon\DiInterface $dependencyInjector) inherited from Phalcon\DI\Injectable Sets the dependency injector public Phalcon\DiInterface getDI () inherited from Phalcon\DI\Injectable Returns the internal dependency injector public setEventsManager (Phalcon\Events\ManagerInterface $eventsManager) inherited from Phalcon\DI\Injectable Sets the event manager public Phalcon\Events\ManagerInterface getEventsManager () inherited from Phalcon\DI\Injectable Returns the internal event manager public __get (unknown $property) inherited from Phalcon\DI\Injectable Magic method __get |