Mvc\Model\Manager::getHasManyToMany

public getHasManyToMany (Phalcon\Mvc\ModelInterface $model) Gets hasManyToMany relations defined on a model

Mvc\Model\Manager::existsBelongsTo

public existsBelongsTo (mixed $modelName, mixed $modelRelation) Checks whether a model has a belongsTo relation with another model

Mvc\Model\Manager::getBelongsToRecords

public getBelongsToRecords (mixed $method, mixed $modelName, mixed $modelRelation, Phalcon\Mvc\ModelInterface $record, [mixed $parameters]) Gets belongsTo related records from a model

Mvc\Model\Manager::existsHasMany

public existsHasMany (mixed $modelName, mixed $modelRelation) Checks whether a model has a hasMany relation with another model

Mvc\Model\Manager::existsHasManyToMany

public existsHasManyToMany (mixed $modelName, mixed $modelRelation) Checks whether a model has a hasManyToMany relation with another model

Mvc\Model\Manager::executeQuery

public executeQuery (mixed $phql, [mixed $placeholders], [mixed $types]) Creates a Phalcon\Mvc\Model\Query and execute it

Mvc\Model\Manager::existsHasOne

public existsHasOne (mixed $modelName, mixed $modelRelation) Checks whether a model has a hasOne relation with another model

Mvc\Model\Manager::getBelongsTo

public getBelongsTo (Phalcon\Mvc\ModelInterface $model) Gets all the belongsTo relations defined in a model $relations = $modelsManager->getBelongsTo(new Robots());

Mvc\Model\Manager::addHasOne

public Phalcon\Mvc\Model\Relation addHasOne (Phalcon\Mvc\Model $model, mixed $fields, string $referencedModel, mixed $referencedFields, [array $options]) Setup a 1-1 relation between two models

Mvc\Model\Manager::createQuery

public createQuery (mixed $phql) Creates a Phalcon\Mvc\Model\Query without execute it