DispatcherInterface::getActionSuffix

abstract public getActionSuffix () ...

Cli\Router\RouteInterface::getReversedPaths

abstract public getReversedPaths () ...

Db\Adapter::getSQLStatement

public getSQLStatement () Active SQL statement in the object

Mvc\ModelInterface::getMessages

abstract public getMessages () ...

Mvc\View\Engine\Volt::getCompiler

public getCompiler () Returns the Volt’s compiler

MVC Applications

All the hard work behind orchestrating the operation of MVC in Phalcon is normally done by Phalcon\Mvc\Application. This component encapsulates all the complex operations required in the background, instantiating every component needed and integrating it with the project, to allow the MVC pattern to operate as desired. Single or Multi Module Applications With this component you can run various types of MVC structures: Single Module Single MVC applications consist of one module only. Namespaces

Micro Applications

With Phalcon you can create “Micro-Framework like” applications. By doing this, you only need to write a minimal amount of code to create a PHP application. Micro applications are suitable to implement small applications, APIs and prototypes in a practical way. use Phalcon\Mvc\Micro; $app = new Micro(); $app->get( "/say/welcome/{name}", function ($name) { echo "<h1>Welcome $name!</h1>"; } ); $app->handle(); Creating a Micro Application Phalcon\Mvc\Micro

Mvc\View::setTemplateBefore

public setTemplateBefore (mixed $templateBefore) Sets a template before the controller layout

Db\Adapter::getRealSQLStatement

public getRealSQLStatement () Active SQL statement in the object without replace bound paramters

DispatcherInterface::setActionName

abstract public setActionName (mixed $actionName) ...