Mvc\Model\ValidatorInterface

Source on GitHub Methods abstract public getMessages () ... abstract public validate (Phalcon\Mvc\EntityInterface $record) ...

Events\ManagerInterface

Source on GitHub Methods abstract public attach (mixed $eventType, mixed $handler) ... abstract public detach (mixed $eventType, mixed $handler) ... abstract public detachAll ([mixed $type]) ... abstract public fire (mixed $eventType, mixed $source, [mixed $data]) ... abstract public getListeners (mixed $type) ...

Events\EventInterface

Source on GitHub Methods abstract public getData () ... abstract public setData ([mixed $data]) ... abstract public getType () ... abstract public setType (mixed $type) ... abstract public stop () ... abstract public isStopped () ... abstract public isCancelable () ...

Mvc\Model\MetaData\Redis::MODELS_ATTRIBUTES

integer MODELS_ATTRIBUTES

Assets\Collection::getPrefix

public getPrefix () ...

Forms\Element\Submit

extends abstract class Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface Source on GitHub Component INPUT[type=submit] for forms Methods public render ([array $attributes]) Renders the element widget public __construct (string $name, [array $attributes]) inherited from Phalcon\Forms\Element Phalcon\Forms\Element constructor public setForm (Phalcon\Forms\Form $form) inherited from Phalcon\Forms\Element Sets the parent form to the element public getForm () inherited from Phalcon\F

Mvc\View\Engine\Volt\Compiler::compileAutoEscape

public compileAutoEscape (array $statement, mixed $extendsMode) Compiles a “autoescape” statement returning PHP code

Logger\Adapter::emergency

public emergency (mixed $message, [array $context]) Sends/Writes an emergency message to the log

Db\Adapter\Pdo::execute

public execute (mixed $sqlStatement, [mixed $bindParams], [mixed $bindTypes]) Sends SQL statements to the database server returning the success state. Use this method only when the SQL statement sent to the server doesn’t return any rows //Inserting data $success = $connection->execute("INSERT INTO robots VALUES (1, 'Astro Boy')"); $success = $connection->execute("INSERT INTO robots VALUES (?, ?)", array(1, 'Astro Boy'));

Config

implements ArrayAccess, Countable Source on GitHub Phalcon\Config is designed to simplify the access to, and the use of, configuration data within applications. It provides a nested object property based user interface for accessing this configuration data within application code. $config = new \Phalcon\Config(array( "database" => array( "adapter" => "Mysql", "host" => "localhost", "username" => "scott", "password" => "cheetah",