Validation\Message::setType

public setType (mixed $type) Sets message type

Tag::dateField

public static string dateField (array $parameters) Builds a HTML input[type=”date”] tag echo Phalcon\Tag::dateField(array("born", "value" => "14-12-1980"))

Mvc\Model\Transaction\Manager::collectTransactions

public collectTransactions () Remove all the transactions from the manager

Validation\Validator\Confirmation::validate

public validate (Phalcon\Validation $validation, mixed $field) Executes the validation

Session\Bag::destroy

public destroy () Destroys the session bag $user->destroy();

Mvc\Model::setWriteConnectionService

public setWriteConnectionService (mixed $connectionService) Sets the DependencyInjection connection service name used to write data

Validation\Validator\Url

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Checks if a value has a url format use Phalcon\Validation\Validator\Url as UrlValidator; $validator->add('url', new UrlValidator([ 'message' => ':field must be a url' ])); $validator->add(['url', 'homepage'], new UrlValidator([ 'message' => [ 'url' => 'url must be a url', 'homepage' => 'homepage must be a url' ] ])); Meth

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\RouteInterface::setName

abstract public setName (mixed $name) ...

Dispatcher::callActionMethod

public callActionMethod (mixed $handler, mixed $actionMethod, [array $params]) ...