Translate\Adapter\Gettext::setDomain

public setDomain (mixed $domain) Changes the current domain (i.e. the translation file)

Logger\AdapterInterface::setLogLevel

abstract public setLogLevel (mixed $level) ...

Mvc\Model\Resultset\Complex::TYPE_RESULT_FULL

integer TYPE_RESULT_FULL

Working with Models (Advanced)

Hydration Modes As mentioned previously, resultsets are collections of complete objects, this means that every returned result is an object representing a row in the database. These objects can be modified and saved again to persistence: use Store\Toys\Robots; $robots = Robots::find(); // Manipulating a resultset of complete objects foreach ($robots as $robot) { $robot->year = 2000; $robot->save(); } Sometimes records are obtained only to be presented to a user in read-only mo

Storing data in Session

The session component provides object-oriented wrappers to access session data. Reasons to use this component instead of raw-sessions: You can easily isolate session data across applications on the same domain Intercept where session data is set/get in your application Change the session adapter according to the application needs Starting the Session Some applications are session-intensive, almost any action that performs requires access to session data. There are others who access session da

Paginator\Adapter::getLimit

public getLimit () Get current rows limit

Mvc\Dispatcher

extends abstract class Phalcon\Dispatcher implements Phalcon\Events\EventsAwareInterface, Phalcon\Di\InjectionAwareInterface, Phalcon\DispatcherInterface, Phalcon\Mvc\DispatcherInterface Source on GitHub Dispatching is the process of taking the request object, extracting the module name, controller name, action name, and optional parameters contained in it, and then instantiating a controller and calling an action of that controller. $di = new \Phalcon\Di(); $dispatcher = new \Phalcon\Mvc\Disp

Mvc\Model\Criteria::getConditions

public getConditions () Returns the conditions parameter in the criteria

Db::FETCH_INTO

integer FETCH_INTO

Mvc\Model\Message::getCode

public getCode () Returns the message code