Forms\ElementInterface::setUserOption

abstract public setUserOption (mixed $option, mixed $value) ...

Mvc\Model\Query\BuilderInterface::from

abstract public from (mixed $models) ...

Forms\Form::getMessagesFor

public getMessagesFor (mixed $name) Returns the messages generated for a specific element

Installation on WAMP

WampServer is a Windows web development environment. It allows you to create web applications with Apache2, PHP and a MySQL database. Below are detailed instructions on how to install Phalcon on WampServer for Windows. Using the latest WampServer version is highly recommended. Download the right version of Phalcon WAMP has both 32 and 64 bit versions. From the download section, you can choose the Phalcon for Windows accordingly to your desired architecture. After download the Phalcon library yo

Debug

Source on GitHub Provides debug capabilities to Phalcon applications Methods public setUri (mixed $uri) Change the base URI for static resources public setShowBackTrace (mixed $showBackTrace) Sets if files the exception’s backtrace must be showed public setShowFiles (mixed $showFiles) Set if files part of the backtrace must be shown in the output public setShowFileFragment (mixed $showFileFragment) Sets if files must be completely opened and showed in the output or just the fragment related to

Db\Reference::getSchemaName

public getSchemaName () ...

Mvc\Model\MetaData\Memory::MODELS_DATE_AT

integer MODELS_DATE_AT

CryptInterface

Source on GitHub Methods abstract public setCipher (mixed $cipher) ... abstract public getCipher () ... abstract public setKey (mixed $key) ... abstract public getKey () ... abstract public encrypt (mixed $text, [mixed $key]) ... abstract public decrypt (mixed $text, [mixed $key]) ... abstract public encryptBase64 (mixed $text, [mixed $key]) ... abstract public decryptBase64 (mixed $text, [mixed $key]) ... abstract public getAvailableCiphers () ...

Paginator\AdapterInterface::getLimit

abstract public getLimit () ...

Session\Adapter\Redis

extends abstract class Phalcon\Session\Adapter implements Phalcon\Session\AdapterInterface Source on GitHub This adapter store sessions in Redis use Phalcon\Session\Adapter\Redis; $session = new Redis([ 'uniqueId' => 'my-private-app', 'host' => 'localhost', 'port' => 6379, 'auth' => 'foobared', 'persistent' => false, 'lifetime' => 3600, 'prefix' => 'my_' 'index' => 1, ]); $session->start();