Mvc\View::getRegisteredEngines

public getRegisteredEngines ()

Mvc\Model\Validator\Uniqueness

extends abstract class Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface Source on GitHub Validates that a field or a combination of a set of fields are not present more than once in the existing records of the related table use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Validator\Uniqueness; class Subscriptors extends Model { public function validation() { $this->validate(new Uniqueness(array( "field" => "email", "message" => "

Tag::rangeField

public static string rangeField (array $parameters) Builds a HTML input[type=”range”] tag

Mvc\DispatcherInterface

implements Phalcon\DispatcherInterface Source on GitHub Methods abstract public setControllerSuffix (mixed $controllerSuffix) ... abstract public setDefaultController (mixed $controllerName) ... abstract public setControllerName (mixed $controllerName) ... abstract public getControllerName () ... abstract public getLastController () ... abstract public getActiveController () ... abstract public setActionSuffix (mixed $actionSuffix) inherited from Phalcon\DispatcherInterface ... abstract public

Annotations\Adapter\Memory::read

public Phalcon\Annotations\Reflection read (string $key) Reads parsed annotations from memory

Annotations\Annotation

Source on GitHub Represents a single annotation in an annotations collection Methods public __construct (array $reflectionData) Phalcon\Annotations\Annotation constructor public getName () Returns the annotation’s name public mixed getExpression (array $expr) Resolves an annotation expression public array getExprArguments () Returns the expression arguments without resolving public array getArguments () Returns the expression arguments public numberArguments () Returns the number of arguments t

Cli\Router\Route::getBeforeMatch

public mixed getBeforeMatch () Returns the ‘before match’ callback if any

Mvc\Model\Query\Builder::addFrom

public addFrom (mixed $model, [mixed $alias], [mixed $with]) Add a model to take part of the query // Load data from models Robots $builder->addFrom('Robots'); // Load data from model 'Robots' using 'r' as alias in PHQL $builder->addFrom('Robots', 'r'); // Load data from model 'Robots' using 'r' as alias in PHQL // and eager load model 'RobotsParts' $builder->addFrom('Robots', 'r', 'RobotsParts'); // Load data from model 'Robots' using 'r' as alias in PHQL // and eager loa

Db::FETCH_PROPS_LATE

integer FETCH_PROPS_LATE

Logger\Multiple::getFormatter

public getFormatter () ...