Assets\Inline::getFilter

public getFilter () ...

Assets\Inline::setFilter

public setFilter (mixed $filter) Sets if the resource must be filtered or not

Assets\Inline::getContent

public getContent () ...

Assets\Inline::getType

public getType () ...

Assets\Inline

Source on GitHub Represents an inline asset $inline = new \Phalcon\Assets\Inline('js', 'alert("hello world");'); Methods public getType () ... public getContent () ... public getFilter () ... public getAttributes () ... public __construct (string $type, string $content, [boolean $filter], [array $attributes]) Phalcon\Assets\Inline constructor public setType (mixed $type) Sets the inlineā€™s type public setFilter (mixed $filter) Sets if the resource must be filtered or not public setAttributes (a

Assets\Inline::setAttributes

public setAttributes (array $attributes) Sets extra HTML attributes

Assets\Filters\Jsmin

implements Phalcon\Assets\FilterInterface Source on GitHub Deletes the characters which are insignificant to JavaScript. Comments will be removed. Tabs will be replaced with spaces. Carriage returns will be replaced with linefeeds. Most spaces and linefeeds will be removed. Methods public filter (mixed $content) Filters the content using JSMIN

Assets\FilterInterface::filter

abstract public filter (mixed $content) ...

Assets\Filters\Cssmin

implements Phalcon\Assets\FilterInterface Source on GitHub Minify the css - removes comments removes newlines and line feeds keeping removes last semicolon from last property Methods public filter (mixed $content) Filters the content using CSSMIN

Assets\FilterInterface

Source on GitHub Methods abstract public filter (mixed $content) ...