Mvc\Collection::appendMessage

public appendMessage (Phalcon\Mvc\Model\MessageInterface $message) Appends a customized message on the validation process use \Phalcon\Mvc\Model\Message as Message; class Robots extends \Phalcon\Mvc\Model { public function beforeSave() { if ($this->name == 'Peter') { message = new Message("Sorry, but a robot cannot be named Peter"); $this->appendMessage(message); } } }

Db\Profiler\Item::getInitialTime

public getInitialTime () Timestamp when the profile started

Mvc\Model::getSource

public getSource () Returns table name mapped in the model

Debug\Dump

Source on GitHub Dumps information about a variable(s) $foo = 123; echo (new \Phalcon\Debug\Dump())->variable($foo, "foo"); $foo = "string"; $bar = ["key" => "value"]; $baz = new stdClass(); echo (new \Phalcon\Debug\Dump())->variables($foo, $bar, $baz); Methods public getDetailed () ... public setDetailed (mixed $detailed) ... public __construct ([array $styles], [mixed $detailed]) Phalcon\Debug\Dump constructor public all () Alias of variables() method protected getS

Events\Manager::arePrioritiesEnabled

public arePrioritiesEnabled () Returns if priorities are enabled

Forms\ElementInterface::getFilters

abstract public getFilters () ...

CryptInterface::getKey

abstract public getKey () ...

Http\RequestInterface::has

abstract public has (mixed $name) ...

Mvc\ViewBaseInterface

Source on GitHub Methods abstract public setViewsDir (mixed $viewsDir) ... abstract public getViewsDir () ... abstract public setParamToView (mixed $key, mixed $value) ... abstract public setVar (mixed $key, mixed $value) ... abstract public getParamsToView () ... abstract public getCache () ... abstract public cache ([mixed $options]) ... abstract public setContent (mixed $content) ... abstract public getContent () ... abstract public partial (mixed $partialPath, [mixed $params]) ...

Mvc\Collection\ManagerInterface::getConnection

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