Mvc\Model\MetaData\Files::MODELS_DATE_IN

integer MODELS_DATE_IN

Kernel

Source on GitHub Methods public static preComputeHashKey (mixed $key) ...

Translate\Interpolator\AssociativeArray::replacePlaceholders

public replacePlaceholders (mixed $translation, [mixed $placeholders]) Replaces placeholders by the values passed

Db\Result\Pdo::dataSeek

public dataSeek (mixed $number) Moves internal resultset cursor to another position letting us to fetch a certain row $result = $connection->query("SELECT * FROM robots ORDER BY name"); $result->dataSeek(2); // Move to third row on result $row = $result->fetch(); // Fetch third row

Db\Dialect\Sqlite

extends abstract class Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface Source on GitHub Generates database specific SQL for the Sqlite RDBMS Methods public getColumnDefinition (Phalcon\Db\ColumnInterface $column) Gets the column name in SQLite public addColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column) Generates SQL to add a column to a table public modifyColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column, [Phalcon\Db\ColumnI

Db\Adapter\Pdo::rollback

public rollback ([mixed $nesting]) Rollbacks the active transaction in the connection

Model Behaviors

Behaviors are shared conducts that several models may adopt in order to re-use code, the ORM provides an API to implement behaviors in your models. Also, you can use the events and callbacks as seen before as an alternative to implement Behaviors with more freedom. A behavior must be added in the model initializer, a model can have zero or more behaviors: use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Behavior\Timestampable; class Users extends Model { public $id; public $name; pub

Session\Adapter::__destruct

public __destruct () ...

Mvc\Router\Route::getMatch

public getMatch () Returns the ‘match’ callback if any

Mvc\Collection::OP_UPDATE

integer OP_UPDATE