Mvc\ModelInterface

Source on GitHub Methods abstract public setTransaction (Phalcon\Mvc\Model\TransactionInterface $transaction) ... abstract public getSource () ... abstract public getSchema () ... abstract public setConnectionService (mixed $connectionService) ... abstract public setWriteConnectionService (mixed $connectionService) ... abstract public setReadConnectionService (mixed $connectionService) ... abstract public getReadConnectionService () ... abstract public getWriteConnectionService () ... abstract

Cache\Frontend\Data::afterRetrieve

public afterRetrieve (mixed $data) Unserializes data after retrieval

Http\Response::sendCookies

public sendCookies () Sends cookies to the client

Mvc\Model\Resultset::filter

public Phalcon\Mvc\Model[] filter (callback $filter) Filters a resultset returning only those the developer requires $filtered = $robots->filter(function($robot){ if ($robot->id < 3) { return $robot; } });

Mvc\Model\MetaData::getAutomaticCreateAttributes

public getAutomaticCreateAttributes (Phalcon\Mvc\ModelInterface $model) Returns attributes that must be ignored from the INSERT SQL generation print_r($metaData->getAutomaticCreateAttributes(new Robots()));

Mvc\Model\MetaData\Files::MODELS_DATA_TYPES_NUMERIC

integer MODELS_DATA_TYPES_NUMERIC

Mvc\Model\Transaction\Manager::rollbackPendent

public rollbackPendent () Rollbacks active transactions within the manager

Mvc\Router\Route::getPaths

public getPaths () Returns the paths

Mvc\Model::refresh

public refresh () Refreshes the model attributes re-querying the record from the database

Http\Response::getStatusCode

public getStatusCode () Returns the status code print_r($response->getStatusCode());