Db\Dialect\Mysql::createView

public createView (mixed $viewName, array $definition, [mixed $schemaName]) Generates SQL to create a view

Mvc\Collection\ManagerInterface::initialize

abstract public initialize (Phalcon\Mvc\CollectionInterface $model) ...

Tag::tagHtmlClose

public static tagHtmlClose (mixed $tagName, [mixed $useEol]) Builds a HTML tag closing tag echo Phalcon\Tag::tagHtmlClose("script", true)

Mvc\Collection\ManagerInterface::useImplicitObjectIds

abstract public useImplicitObjectIds (Phalcon\Mvc\CollectionInterface $model, mixed $useImplicitObjectIds) ...

Mvc\Model::sum

public static mixed sum ([array $parameters]) Allows to calculate a sum on a column that match the specified conditions //How much are all robots? $sum = Robots::sum(array('column' => 'price')); echo "The total price of robots is ", $sum, "\n"; //How much are mechanical robots? $sum = Robots::sum(array("type = 'mechanical'", 'column' => 'price')); echo "The total price of mechanical robots is ", $sum, "\n";

Db\Index::__set_state

public static __set_state (array $data) Restore a Phalcon\Db\Index object from export

Mvc\Collection\ManagerInterface::notifyEvent

abstract public notifyEvent (mixed $eventName, Phalcon\Mvc\CollectionInterface $model) ...

Mvc\Model\RelationInterface::getFields

abstract public getFields () ...

Db::setup

public static setup (array $options) Enables/disables options in the Database component

Db\Dialect\Postgresql::listTables

public listTables ([mixed $schemaName]) List all tables in database print_r($dialect->listTables("blog"))