Mvc\Model::getMessages

public getMessages ([mixed $filter]) Returns array of validation messages $robot = new Robots(); $robot->type = 'mechanical'; $robot->name = 'Astro Boy'; $robot->year = 1952; if ($robot->save() == false) { echo "Umh, We can't store robots right now "; foreach ($robot->getMessages() as $message) { echo $message; } } else { echo "Great, a new robot was saved successfully!"; }

Logger::NOTICE

integer NOTICE

Mvc\Model::cloneResult

public static Phalcon\Mvc\ModelInterface cloneResult (Phalcon\Mvc\ModelInterface $base, array $data, [int $dirtyState]) Assigns values to a model from an array returning a new model $robot = Phalcon\Mvc\Model::cloneResult(new Robots(), array( 'type' => 'mechanical', 'name' => 'Astro Boy', 'year' => 1952 ));

Http\Request::getDigestAuth

public getDigestAuth () Gets auth info accepted by the browser/client from $_SERVER[‘PHP_AUTH_DIGEST’]

Mvc\Router\Route::getRoutePaths

public static getRoutePaths ([mixed $paths]) Returns routePaths

Mvc\Router\RouteInterface::getPattern

abstract public getPattern () ...

Mvc\Collection::update

public update () Creates/Updates a collection based on the values in the attributes

Loader::registerFiles

public registerFiles (array $files, [mixed $merge]) Registers files that are “non-classes” hence need a “require”. This is very useful for including files that only have functions

Mvc\Router::setDefaultNamespace

public setDefaultNamespace (mixed $namespaceName) Sets the name of the default namespace

Translate\Adapter\Gettext::nquery

public nquery (mixed $msgid1, mixed $msgid2, mixed $count, [mixed $placeholders], [mixed $domain]) The plural version of gettext(). Some languages have more than one form for plural messages dependent on the count.