Mvc\Model\Query\BuilderInterface::where

abstract public where (mixed $conditions, [mixed $bindParams], [mixed $bindTypes]) ...

Mvc\Model\Query\StatusInterface

Source on GitHub Methods abstract public getModel () ... abstract public getMessages () ... abstract public success () ...

Mvc\Model\Query

implements Phalcon\Mvc\Model\QueryInterface, Phalcon\Di\InjectionAwareInterface Source on GitHub This class takes a PHQL intermediate representation and executes it. $phql = "SELECT c.price*0.16 AS taxes, c.* FROM Cars AS c JOIN Brands AS b WHERE b.name = :name: ORDER BY c.name"; $result = $manager->executeQuery($phql, array( "name" => "Lamborghini" )); foreach ($result as $row) { echo "Name: ", $row->cars->name, "\n"; echo "Price: ", $row->cars->price

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

Mvc\Model\MessageInterface

Source on GitHub Methods abstract public setType (mixed $type) ... abstract public getType () ... abstract public setMessage (mixed $message) ... abstract public getMessage () ... abstract public setField (mixed $field) ... abstract public getField () ... abstract public __toString () ... abstract public static __set_state (array $message) ...

Mvc\Model\Behavior\Timestampable

extends abstract class Phalcon\Mvc\Model\Behavior implements Phalcon\Mvc\Model\BehaviorInterface Source on GitHub Allows to automatically update a model’s attribute saving the datetime when a record is created or updated Methods public notify (mixed $type, Phalcon\Mvc\ModelInterface $model) Listens for notifications from the models manager public __construct ([array $options]) inherited from Phalcon\Mvc\Model\Behavior Phalcon\Mvc\Model\Behavior protected mustTakeAction (mixed $eventName) inher

Registry::count

final public count () Checks how many elements are in the register

Registry::offsetGet

final public offsetGet (mixed $offset) Returns an index in the registry

Http\Request::getPort

public getPort () Gets information about the port on which the request is made.

Mvc\Model\Query\BuilderInterface::getColumns

abstract public getColumns () ...