Mvc\Model::average

public static double average ([array $parameters]) Allows to calculate the average value on a column matching the specified conditions //What's the average price of robots? $average = Robots::average(array('column' => 'price')); echo "The average price is ", $average, "\n"; //What's the average price of mechanical robots? $average = Robots::average(array("type='mechanical'", 'column' => 'price')); echo "The average price of mechanical robots is ", $average, "\n";

Forms\Element::getMessages

public getMessages () Returns the messages that belongs to the element The element needs to be attached to a form

Mvc\View\Simple::__set

public __set (mixed $key, mixed $value) Magic method to pass variables to the views $this->view->products = $products;

Mvc\Micro\Collection::patch

public Phalcon\Mvc\Micro\Collection patch (string $routePattern, callable $handler, [string $name]) Maps a route to a handler that only matches if the HTTP method is PATCH

Mvc\Model::setConnectionService

public setConnectionService (mixed $connectionService) Sets the DependencyInjection connection service name

Mvc\RouterInterface::getActionName

abstract public getActionName () ...

Mvc\Model\Validator\Email::validate

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

Mvc\Router\Group::setPaths

public setPaths (mixed $paths) Set common paths for all the routes in the group

Mvc\Model\MetaDataInterface::readColumnMap

abstract public readColumnMap (Phalcon\Mvc\ModelInterface $model) ...

Mvc\Model\Criteria::forUpdate

public forUpdate ([mixed $forUpdate]) Adds the “for_update” parameter to the criteria