Mvc\Router\RouteInterface::setHostname

abstract public setHostname (mixed $hostname) ...

Mvc\Model\Query::setUniqueRow

public setUniqueRow (mixed $uniqueRow) Tells to the query if only the first row in the resultset must be returned

Mvc\Model\Manager::existsHasOne

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

Mvc\Model\MetaData::getPrimaryKeyAttributes

public getPrimaryKeyAttributes (Phalcon\Mvc\ModelInterface $model) Returns an array of fields which are part of the primary key print_r($metaData->getPrimaryKeyAttributes(new Robots()));

Mvc\Model\Transaction::setRollbackOnAbort

public setRollbackOnAbort (mixed $rollbackOnAbort) Sets flag to rollback on abort the HTTP connection

Mvc\Model\Manager::getHasManyRecords

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

Mvc\Model\ManagerInterface::getReadConnectionService

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

Mvc\Router\Group

implements Phalcon\Mvc\Router\GroupInterface Source on GitHub Helper class to create a group of routes with common attributes $router = new \Phalcon\Mvc\Router(); //Create a group with a common module and controller $blog = new Group(array( 'module' => 'blog', 'controller' => 'index' )); //All the routes start with /blog $blog->setPrefix('/blog'); //Add a route to the group $blog->add('/save', array( 'action' => 'save' )); //Add another route to the group

Mvc\Model\ManagerInterface::getHasMany

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

Mvc\View\Simple::getVar

public getVar (mixed $key) Returns a parameter previously set in the view