Mvc\Model\Query\Builder::innerJoin

public Phalcon\Mvc\Model\Query\Builder innerJoin (string $model, [string $conditions], [string $alias]) Adds an INNER join to the query // Inner Join model 'Robots' with automatic conditions and alias $builder->innerJoin('Robots'); // Inner Join model 'Robots' specifing conditions $builder->innerJoin('Robots', 'Robots.id = RobotsParts.robots_id'); // Inner Join model 'Robots' specifing conditions and alias $builder->innerJoin('Robots', 'r.id = RobotsParts.robots_id', 'r');

Mvc\Model\Resultset::offsetUnset

public offsetUnset (mixed $offset) Resultsets cannot be changed. It has only been implemented to meet the definition of the ArrayAccess interface

Mvc\Model\Relation::setIntermediateRelation

public setIntermediateRelation (string | array $intermediateFields, string $intermediateModel, string $intermediateReferencedFields) Sets the intermediate model data for has-*-through relations

Session\Bag::get

public get (mixed $property, [mixed $defaultValue]) Obtains a value from the session bag optionally setting a default value echo $user->get('name', 'Kimbra');

Http\Request::isHead

public isHead () Checks whether HTTP method is HEAD. if _SERVER[“REQUEST_METHOD”]===”HEAD”

Db\Dialect\Mysql::tableOptions

public tableOptions (mixed $table, [mixed $schema]) Generates the SQL to describe the table creation options

Db\Profiler\Item::setSqlVariables

public setSqlVariables (array $sqlVariables) SQL variables related to the profile

Paginator\Adapter\NativeArray

extends abstract class Phalcon\Paginator\Adapter implements Phalcon\Paginator\AdapterInterface Source on GitHub Pagination using a PHP array as source of data use Phalcon\Paginator\Adapter\NativeArray; $paginator = new NativeArray( [ 'data' => array( ['id' => 1, 'name' => 'Artichoke'], ['id' => 2, 'name' => 'Carrots'], ['id' => 3, 'name' => 'Beet'], ['id' => 4, 'name' => 'Lettuce'], ['id

Mvc\Model\Manager::clearReusableObjects

public clearReusableObjects () Clears the internal reusable list

Mvc\Dispatcher::getPreviousControllerName

public getPreviousControllerName () Gets previous dispatched controller name