From d0b7317e10254490acbe748d1d8c1e04aaf8be6b Mon Sep 17 00:00:00 2001
From: Kevin Chabowski
18. Sep. 2011, 16:49:20
Check, if a value is in an array. The tag takes the variable name of the array by parameter array
.The value to test with will be taken from the tags content.
Returns empty text, if the value is not in the array, otherwise a non-empty text.
+ +Join parts of an array together. The array's variable name goes to the array
parameter. The tag's content will be used as the glue, i.e. this will be between two elements.
Returns the joined array
+ +Split a text and write the parts to an array. The array
parameter takes the variable name of the resulting array, the delim
parameter the text to split by. The tag's content will be the text to split.
Adding an element to an array. The array
parameter takes the variable name of the array. The key
parameter takes the array key to map the value to, if omitted, the value will be appended to the end of the array. The value is the tag's content.