Mvc\Dispatcher::setControllerName

public setControllerName (mixed $controllerName) Sets the controller name to be dispatched

Mvc\Model\MetaData\Xcache::MODELS_DEFAULT_VALUES

integer MODELS_DEFAULT_VALUES

Db\Result\Pdo::fetch

public fetch ([mixed $fetchStyle], [mixed $cursorOrientation], [mixed $cursorOffset]) Fetches an array/object of strings that corresponds to the fetched row, or FALSE if there are no more rows. This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode $result = $connection->query("SELECT * FROM robots ORDER BY name"); $result->setFetchMode(Phalcon\Db::FETCH_OBJ); while ($robot = $result->fetch()) { echo $robot->name; }

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');

Http\Response\CookiesInterface

Source on GitHub Methods abstract public useEncryption (mixed $useEncryption) ... abstract public isUsingEncryption () ... abstract public set (mixed $name, [mixed $value], [mixed $expire], [mixed $path], [mixed $secure], [mixed $domain], [mixed $httpOnly]) ... abstract public get (mixed $name) ... abstract public has (mixed $name) ... abstract public delete (mixed $name) ... abstract public send () ... abstract public reset () ...

Routing

The router component allows you to define routes that are mapped to controllers or handlers that should receive the request. A router simply parses a URI to determine this information. The router has two modes: MVC mode and match-only mode. The first mode is ideal for working with MVC applications. Defining Routes Phalcon\Mvc\Router provides advanced routing capabilities. In MVC mode, you can define routes and map them to controllers/actions that you require. A route is defined as follows: use

Mvc\Router\Route::getPaths

public getPaths () Returns the paths

Image\AdapterInterface::blur

abstract public blur (mixed $radius) ...

Mvc\Model\MetaData\Files::MODELS_PRIMARY_KEY

integer MODELS_PRIMARY_KEY

Loader

implements Phalcon\Events\EventsAwareInterface Source on GitHub This component helps to load your project classes automatically based on some conventions //Creates the autoloader $loader = new Loader(); //Register some namespaces $loader->registerNamespaces(array( 'Example\Base' => 'vendor/example/base/', 'Example\Adapter' => 'vendor/example/adapter/', 'Example' => 'vendor/example/' )); //register autoloader $loader->register(); //Requiring this class will auto