Simon Praetorius
Simon Praetorius
This patch enables Fluid's components to accept multiple slots. Each slot is identified by a `name` argument. The corresponding `` ViewHelper can then be used to fill the slots of...
A new `` ViewHelper should be added to Fluid, which checks if a provided value either exists in the provided array or in the provided string. If both the array...
A new `` ViewHelper should be added to Fluid, which calculates the length of a string. Arguments: * string $value See also [the php mb_strlen() function](https://www.php.net/manual/en/function.mb-strlen.php). Examples: ```xml ```
A new `` ViewHelper should be added to Fluid, which merges two arrays, optionally recursively. Arguments: * array $base * array $toMerge (to be discussed, feel free to provide alternatives)...
A new `` ViewHelper should be added to Fluid, which returns an array that contains the specified range of integers. We currently limit this to integers because floats would require...
This needs to be commented out until a Fluid version containing the new ViewHelper is merged into TYPO3 Core. * f:slot (4.3) * f:shuffle (4.x) * f:flatten (4.x)
As an extension to components, it should be possible to provide multiple slots to one component: Named Slots. ```xml some content some other content ``` And within the component: ```xml...
Currently, it is necessary to extend the built-in `ViewHelperResolver` implementation, just to provide external DI for created ViewHelper objects. We should provide a better API, which would allow us in...
One major goal for Fluid 5 is to implement a (mostly) context-free possibility to warmup the cache of Fluid templates. Most of the road blocks are related to the caching...