Mvc\Router::addPost

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

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::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::addPatch

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

Mvc\ModuleDefinitionInterface::registerAutoloaders

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

Mvc\Model\Validator\Url::validate

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

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

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

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\ModuleDefinitionInterface::registerServices

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