Mvc\Router::addHead

public addHead (mixed $pattern, [mixed $paths], [mixed $position]) Adds a route to the router that only match if the HTTP method is HEAD

Mvc\Router::addGet

public addGet (mixed $pattern, [mixed $paths], [mixed $position]) Adds a route to the router that only match if the HTTP method is GET

Mvc\Router::addDelete

public addDelete (mixed $pattern, [mixed $paths], [mixed $position]) Adds a route to the router that only match if the HTTP method is DELETE

Mvc\Router::addConnect

public addConnect (mixed $pattern, [mixed $paths], [mixed $position]) Adds a route to the router that only match if the HTTP method is CONNECT

Mvc\Router::add

public add (mixed $pattern, [mixed $paths], [mixed $httpMethods], [mixed $position]) Adds a route to the router without any HTTP constraint use Phalcon\Mvc\Router; $router->add('/about', 'About::index'); $router->add('/about', 'About::index', ['GET', 'POST']); $router->add('/about', 'About::index', ['GET', 'POST'], Router::POSITION_FIRST);

Mvc\Router

implements Phalcon\Di\InjectionAwareInterface, Phalcon\Mvc\RouterInterface, Phalcon\Events\EventsAwareInterface Source on GitHub Phalcon\Mvc\Router is the standard framework router. Routing is the process of taking a URI endpoint (that part of the URI which comes after the base URL) and decomposing it into parameters to determine which module, controller, and action of that controller should receive the request use Phalcon\Mvc\Router; $router = new Router(); $router->add( '/document

Mvc\ModuleDefinitionInterface::registerServices

abstract public registerServices (Phalcon\DiInterface $dependencyInjector) ...

Mvc\ModuleDefinitionInterface::registerAutoloaders

abstract public registerAutoloaders ([Phalcon\DiInterface $dependencyInjector]) ...

Mvc\ModuleDefinitionInterface

Source on GitHub Methods abstract public registerAutoloaders ([Phalcon\DiInterface $dependencyInjector]) ... abstract public registerServices (Phalcon\DiInterface $dependencyInjector) ...

Mvc\Model\Validator\Url::validate

public validate (Phalcon\Mvc\EntityInterface $record) Executes the validator