Assets\Collection::getCodes

public getCodes () ...

Image\AdapterInterface::resize

abstract public resize ([mixed $width], [mixed $height], [mixed $master]) ...

Http\Response\Cookies

implements Phalcon\Http\Response\CookiesInterface, Phalcon\Di\InjectionAwareInterface Source on GitHub This class is a bag to manage the cookies A cookies bag is automatically registered as part of the ‘response’ service in the DI Methods public setDI (Phalcon\DiInterface $dependencyInjector) Sets the dependency injector public getDI () Returns the internal dependency injector public useEncryption (mixed $useEncryption) Set if cookies in the bag must be automatically encrypted/decrypted public

Http\Request::getClientCharsets

public getClientCharsets () Gets a charsets array and their quality accepted by the browser/client from _SERVER[“HTTP_ACCEPT_CHARSET”]

Validation\MessageInterface

Source on GitHub Methods abstract public setType (mixed $type) ... abstract public getType () ... abstract public setMessage (mixed $message) ... abstract public getMessage () ... abstract public setField (mixed $field) ... abstract public getField () ... abstract public __toString () ... abstract public static __set_state (array $message) ...

Validation\Validator\StringLength

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Validates that a string has the specified maximum and minimum constraints The test is passed if for a string’s length L, min<=L<=max, i.e. L must be at least min, and at most max. use Phalcon\Validation\Validator\StringLength as StringLength; $validation->add('name_last', new StringLength([ 'max' => 50, 'min' => 2, 'messageMaximum' => 'We don\'

Mvc\Model::writeAttribute

public writeAttribute (mixed $attribute, mixed $value) Writes an attribute value by its name $robot->writeAttribute('name', 'Rosey');

FlashInterface::warning

abstract public warning (mixed $message) ...

Mvc\Model\Manager::keepSnapshots

public keepSnapshots (Phalcon\Mvc\ModelInterface $model, mixed $keepSnapshots) Sets if a model must keep snapshots

Mvc\Url::getStatic

public getStatic ([mixed $uri]) Generates a URL for a static resource // Generate a URL for a static resource echo $url->getStatic("img/logo.png"); // Generate a URL for a static predefined route echo $url->getStatic(array('for' => 'logo-cdn'));