Skip to content

Latest commit

 

History

History
719 lines (509 loc) · 19.2 KB

filters.texy

File metadata and controls

719 lines (509 loc) · 19.2 KB
Latte Filters ************* .[perex] Filters are functions that change or format the data to a form we want. This is summary of the built-in filters which are available. .[table-latte-filters] |## String / array transformation | `batch` | [listing linear data in a table |#batch] | `breakLines` | [Inserts HTML line breaks before all newlines |#breakLines] | `bytes` | [formats size in bytes |#bytes] | `clamp` | [clamps value to the range |#clamp] | `dataStream` | [Data URI protocol conversion |#datastream] | `date` | [formats date |#date] | `explode` | [splits a string by the given delimiter |#explode] | `first` | [returns first element of array or character of string |#first] | `implode` | [joins an array to a string |#implode] | `indent` | [indents the text from left with number of tabs |#indent] | `join` | [joins an array to a string |#implode] | `last` | [returns last element of array or character of string |#last] | `length` | returns length of a string or array | `number` | [formats number |#number] | `padLeft` | [completes the string to given length from left |#padLeft] | `padRight` | [completes the string to given length from right |#padRight] | `random` | [returns random element of array or character of string |#random] | `repeat` | [repeats the string |#repeat] | `replace` | [replaces all occurrences of the search string with the replacement |#replace] | `replaceRE` | [replaces all occurrences according to regular expression |#replaceRE] | `reverse` | [reverses an UTF‑8 string or array |#reverse] | `slice` | [extracts a slice of an array or a string |#slice] | `sort` | [sorts an array |#sort] | `spaceless` | [removes whitespace |#spaceless], similar to [spaceless |tags] tag | `split` | [splits a string by the given delimiter |#explode] | `strip` | [removes whitespace |#spaceless] | `stripHtml` | [removes HTML tags and converts HTML entities to text |#stripHtml] | `substr` | [returns part of the string |#substr] | `trim` | [strips whitespace from the string |#trim] | `translate` | [translation into other languages |#translate] | `truncate` | [shortens the length preserving whole words |#truncate] | `webalize` | [adjusts the UTF‑8 string to the shape used in the URL |#webalize] .[table-latte-filters] |## Letter casing | `capitalize` | [lower case, the first letter of each word upper case |#capitalize] | `firstUpper` | [makes the first letter upper case |#firstUpper] | `lower` | [makes a string lower case |#lower] | `upper` | [makes a string upper case |#upper] .[table-latte-filters] |## Rounding numbers | `ceil` | [rounds a number up to a given precision |#ceil] | `floor` | [rounds a number down to a given precision |#floor] | `round` | [rounds a number to a given precision |#round] .[table-latte-filters] |## Escaping | `escapeUrl` | [escapes parameter in URL |#escapeUrl] | `noescape` | [prints a variable without escaping |#noescape] | `query` | [generates a query string in the URL |#query] There are also escaping filters for HTML (`escapeHtml` and `escapeHtmlComment`), XML (`escapeXml`), JavaScript (`escapeJs`), CSS (`escapeCss`) and iCalendar (`escapeICal`), which Latte uses itself thanks to [context-aware escaping |safety-first#Context-aware escaping] and you do not need to write them. .[table-latte-filters] |## Security | `checkUrl` | [sanitizes string for use inside href attribute |#checkUrl] | `noCheck` | [prevents automatic URL sanitization |#noCheck] Latte the `src` and `href` attributes [checks automatically |safety-first#link checking], so you almost don't need to use the `checkUrl` filter. .[note] All built-in filters work with UTF‑8 encoded strings. Usage ===== Latte allows calling filters by using the pipe sign notation (preceding space is allowed): ```latte

{$heading|upper}

``` Filters can be chained, in that case they apply in order from left to right: ```latte

{$heading|lower|capitalize}

``` Parameters are put after the filter name separated by colon or comma: ```latte

{$heading|truncate:20,''}

``` Filters can be applied on expression: ```latte {var $name = ($title|upper) . ($subtitle|lower)} ``` [Custom filters|extending-latte#filters] can be registered this way: ```php $latte = new Latte\Engine; $latte->addFilter('shortify', function (string $s, int $len = 10): string { return mb_substr($s, 0, $len); }); ``` We use it in a template like this: ```latte

{$text|shortify}

{$text|shortify:100}

``` Filters ======= batch(int length, mixed item): array .[filter]{data-version:2.7} ---------------------------------------------------------------- Filter that simplifies the listing of linear data in the form of a table. It returns an array of array with the given number of items. If you provide a second parameter this is used to fill up missing items on the last row. ```latte {var $items = ['a', 'b', 'c', 'd', 'e']} {foreach ($items|batch: 3, 'No item') as $row} {foreach $row as $column} {/foreach} {/foreach}
{$column}
``` Prints: ```latte
a b c
d e No item
``` breakLines ---------- Inserts HTML line breaks before all newlines. ```latte {var $s = "Text & with \n newline"} {$s|breakLines} {* outputs "Text & with
\n newline" *} ``` bytes(int precision = 2) .[filter] ---------------------------------- Formats a size in bytes to human-readable form. ```latte {$size|bytes} 0 B, 1.25 GB, … {$size|bytes:0} 10 B, 1 GB, … ``` ceil(int precision = 0) .[filter] --------------------------------- Rounds a number up to a given precision. ```latte {=3.4|ceil} {* outputs 4 *} {=135.22|ceil:1} {* outputs 135.3 *} {=135.22|ceil:3} {* outputs 135.22 *} ``` See also [#floor], [#round]. capitalize ---------- Returns a title-cased version of the value. Words will start with uppercase letters, all remaining characters are lowercase. Requires PHP extension `mbstring`. ```latte {='i like LATTE'|capitalize} {* outputs 'I Like Latte' *} ``` See also [#firstUpper], [#lower], [#upper]. checkUrl -------- Enforces URL sanitization. It checks if the variable contains a web URL (ie. HTTP/HTTPS protocol) and prevents the writing of links that may pose a security risk. ```latte {var $link = 'javascript:window.close()'} checked unchecked ``` Prints: ```latte checked unchecked ``` See also [#noCheck]. clamp(int|float min, int|float max) .[filter]{data-version:2.9} --------------------------------------------------------------- Returns value clamped to the inclusive range of min and max. ```latte {$level|clamp: 0, 255} ``` Also exists as [function|functions#clamp]. dataStream(string mimetype = detect) .[filter] ---------------------------------------------- Converts the content to data URI scheme. It can be used to insert images into HTML or CSS without the need to link external files. Lets have an image in a variable `$img = Image::fromFile('obrazek.gif')`, then ```latte

``` Prints for example: ```latte

``` .[caution] Requires PHP extension `fileinfo`. date(string format) .[filter] ----------------------------- Returns a date in the given format using options of [php:strftime] or [php:date] PHP functions. Filter gets a date as a UNIX timestamp, a string or an object of `DateTime` type. ```latte {$today|date:'%d.%m.%Y'} {$today|date:'j. n. Y'} ``` escapeUrl --------- Escapes a variable to be used as a parameter in URL. ```latte {$name} ``` See also [#query]. explode(string separator = '') .[filter]{data-version:2.10.2} ------------------------------------------------------------- Splits a string by the given delimiter and returns an array of strings. Alias for `split`. ```latte {='one,two,three'|explode:','} {* returns ['one', 'two', 'three'] *} ``` If the delimiter is an empty string (default value), the input will be divided into individual characters: ```latte {='123'|explode} {* returns ['1', '2', '3'] *} ``` You can use also alias `split`: ```latte {='1,2,3'|split:','} {* returns ['1', '2', '3'] *} ``` See also [#implode]. first .[filter]{data-version:2.10.2} ------------------------------------ Returns the first element of array or character of string: ```latte {=[1, 2, 3, 4]|first} {* outputs 1 *} {='abcd'|first} {* outputs 'a' *} ``` See also [#last], [#random]. floor(int precision = 0) .[filter] ---------------------------------- Rounds a number down to a given precision. ```latte {=3.5|floor} {* outputs 3 *} {=135.79|floor:1} {* outputs 135.7 *} {=135.79|floor:3} {* outputs 135.79 *} ``` See also [#ceil], [#round]. firstUpper ---------- Converts a first letter of value to uppercase. Requires PHP extension `mbstring`. ```latte {='the latte'|firstUpper} {* outputs 'The latte' *} ``` See also [#capitalize], [#lower], [#upper]. implode(string glue = '') .[filter] ----------------------------------- Return a string which is the concatenation of the strings in the array. Alias for `join`. ```latte {=[1, 2, 3]|implode} {* outputs '123' *} {=[1, 2, 3]|implode:'|'} {* outputs '1|2|3' *} ``` You can also use an alias `join`: .{data-version:2.10.2} ```latte {=[1, 2, 3]|join} {* outputs '123' *} ``` indent(int level = 1, string char = "\t") .[filter] --------------------------------------------------- Indents a text from left by a given number of tabs or other characters which we specify in the second optional argument. Blank lines are not indented. ```latte
{block |indent}

Hello

{/block}
``` Prints: ```latte

Hello

``` last .[filter]{data-version:2.10.2} ----------------------------------- Returns the last element of array or character of string: ```latte {=[1, 2, 3, 4]|last} {* outputs 4 *} {='abcd'|last} {* outputs 'd' *} ``` See also [#first], [#random]. length ------ Returns length of a string or array. - for strings, it will return length in UTF‑8 characters - for arrays, it will return count of items - for objects that implement the Countable interface, it will use the return value of the count() - for objects that implement the IteratorAggregate interface, it will use the return value of the iterator_count() ```latte {if ($users|length) > 10} ... {/if} ``` lower ----- Converts a value to lowercase. Requires PHP extension `mbstring`. ```latte {='LATTE'|lower} {* outputs 'latte' *} ``` See also [#capitalize], [#firstUpper], [#upper]. noCheck ------- Prevents automatic URL sanitization. Latte [automatically checks|safety-first#Link checking] if the variable contains a web URL (ie. HTTP/HTTPS protocol) and prevents the writing of links that may pose a security risk. If the link uses a different scheme, such as `javascript:` or `data:`, and you are sure of its contents, you can disable the check via `|noCheck`. ```latte {var $link = 'javascript:window.close()'} checked unchecked ``` Prints: ```latte checked unchecked ``` See also [#checkUrl]. noescape -------- Disables automatic escaping. ```latte {var $trustedHtmlString = 'hello'} Escaped: {$trustedHtmlString} Unescaped: {$trustedHtmlString|noescape} ``` Prints: ```latte Escaped: <b>hello</b> Unescaped: hello ``` .[warning] Misuse of the `noescape` filter can lead to an XSS vulnerability! Never use it unless you are **absolutely sure** what you are doing and that the string you are printing comes from a trusted source. number(int decimals = 0, string decPoint = '.', string thousandsSep = ',') .[filter] ------------------------------------------------------------------------------------ Formats a number to given number of decimal places. You can also specify a character of the decimal point and thousands separator. ```latte {1234.20 |number} 1,234 {1234.20 |number:1} 1,234.2 {1234.20 |number:2} 1,234.20 {1234.20 |number:2, ',', ' '} 1 234,20 ``` padLeft(int length, string pad = ' ') .[filter] ----------------------------------------------- Pads a string to a certain length with another string from left. ```latte {='hello'|padLeft: 10, '123'} {* outputs '12312hello' *} ``` padRight(int length, string pad = ' ') .[filter] ------------------------------------------------ Pads a string to a certain length with another string from right. ```latte {='hello'|padRight: 10, '123'} {* outputs 'hello12312' *} ``` query .{data-version:2.10} -------------------------- Dynamically generates a query string in the URL: ```latte click search ``` Prints: ```latte click search ``` Keys with a value of `null` are omitted. See also [#escapeUrl]. random .[filter]{data-version:2.10.2} ------------------------------------- Returns random element of array or character of string: ```latte {=[1, 2, 3, 4]|random} {* example output: 3 *} {='abcd'|random} {* example output: 'b' *} ``` See also [#first], [#last]. repeat(int count) .[filter] --------------------------- Repeats the string x-times. ```latte {='hello'|repeat: 3} {* outputs 'hellohellohello' *} ``` replace(string|array search, string replace = '') .[filter] ----------------------------------------------------------- Replaces all occurrences of the search string with the replacement string. ```latte {='hello world'|replace: 'world', 'friend'} {* outputs 'hello friend' *} ``` Multiple replacements can be made at once: .{data-version:2.10.2} ```latte {='hello world'|replace: [h => l, l => h]} {* outputs 'lehho worhd' *} ``` replaceRE(string pattern, string replace = '') .[filter] -------------------------------------------------------- Replaces all occurrences according to regular expression. ```latte {='hello world'|replaceRE: '/l.*/', 'l'} {* outputs 'hel' *} ``` reverse ------- Reverses given string or array. ```latte {var $s = 'Nette'} {$s|reverse} {* outputs 'etteN' *} {var $a = ['N', 'e', 't', 't', 'e']} {$a|reverse} {* returns ['e', 't', 't', 'e', 'N'] *} ``` round(int precision = 0) .[filter] ---------------------------------- Rounds a number to a given precision. ```latte {=3.4|round} {* outputs 3 *} {=3.5|round} {* outputs 4 *} {=135.79|round:1} {* outputs 135.8 *} {=135.79|round:3} {* outputs 135.79 *} ``` See also [#ceil], [#floor]. slice(int start, int length = null, bool preserveKeys = false) .[filter]{data-version:2.10.2} --------------------------------------------------------------------------------------------- Extracts a slice of an array or a string. ```latte {='hello'|slice: 1, 2} {* outputs 'el' *} {=['a', 'b', 'c']|slice: 1, 2} {* outputs ['b', 'c'] *} ``` The slice filter works as the `array_slice` PHP function for arrays and `mb_substr` for strings with a fallback to `iconv_substr` in UTF‑8 mode. If the start is non-negative, the sequence will start at that start in the variable. If start is negative, the sequence will start that far from the end of the variable. If length is given and is positive, then the sequence will have up to that many elements in it. If the variable is shorter than the length, then only the available variable elements will be present. If length is given and is negative then the sequence will stop that many elements from the end of the variable. If it is omitted, then the sequence will have everything from offset up until the end of the variable. Filter will reorder and reset the integer array keys by default. This behaviour can be changed by setting preserveKeys to true. String keys are always preserved, regardless of this parameter. sort .{data-version:2.9} ------------------------ Filter that sorts an array and maintain index association. ```latte {foreach ($names|sort) as $name} ... {/foreach} ``` Array sorted in reverse order. ```latte {foreach ($names|sort|reverse) as $name} ... {/foreach} ``` You can pass your own comparison function as a parameter: .{data-version:2.10.2} ```latte {var $sorted = ($names|sort: fn($a, $b) => $b <=> $a)} ``` spaceless .{data-version:2.10.2} -------------------------------- Removes unnecessary whitespace from the output. You can also use alias `strip`. ```latte {block |spaceless}
  • Hello
{/block} ``` Prints: ```latte
  • Hello
``` stripHtml --------- Converts HTML to plain text. That is, it removes HTML tags and converts HTML entities to text. ```latte {='

one < two

'|stripHtml} {* outputs 'one < two' *} ``` The resulting plain text can naturally contain characters that represent HTML tags, for example `'<p>'|stripHtml` is converted to `

`. Never output the resulting text with `|noescape`, as this may lead to a security vulnerability. substr(int offset, int length = null) .[filter] ----------------------------------------------- Extracts a slice of a string. This filter has been replaced by a [#slice] filter. ```latte {$string|substr: 1, 2} ``` translate(string message, ...args) .[filter]{data-version:3.0} -------------------------------------------------------------- It translates expressions into other languages. To make the filter available, you need [set up translator|develop#TranslatorExtension]. You can also use the [tags for translation|tags#Translation]. ```latte {='Baskter'|translate} {$item|translate} ``` trim(string charlist = " \t\n\r\0\x0B\u{A0}") .[filter] ------------------------------------------------------- Strip leading and trailing characters, by default whitespace. ```latte {=' I like Latte. '|trim} {* outputs 'I like Latte.' *} {=' I like Latte.'|trim: '.'} {* outputs ' I like Latte' *} ``` truncate(int length, string append = '…') .[filter] --------------------------------------------------- Shortens a string to the maximum given length but tries to preserve whole words. If the string is truncated it adds ellipsis at the end (this can be changed by the second parameter). ```latte {var $title = 'Hello, how are you?'} {$title|truncate:5} {* Hell… *} {$title|truncate:17} {* Hello, how are… *} {$title|truncate:30} {* Hello, how are you? *} ``` upper ----- Converts a value to uppercase. Requires PHP extension `mbstring`. ```latte {='latte'|upper} {* outputs 'LATTE' *} ``` See also [#capitalize], [#firstUpper], [#lower]. webalize -------- Converts to ASCII. Converts spaces to hyphens. Removes characters that aren’t alphanumerics, underscores, or hyphens. Converts to lowercase. Also strips leading and trailing whitespace. ```latte {var $s = 'Our 10. product'} {$s|webalize} {* outputs 'our-10-product' *} ``` .[caution] Requires package [nette/utils|doc:utils/@home]. {{composer: latte/latte}}