Flowpack.NodeTemplates
Flowpack.NodeTemplates copied to clipboard
Neos CMS package that auto creates nodes based on a declarative template
With [pr](https://github.com/Flowpack/Flowpack.NodeTemplates/pull/53) the functionality to set internal node properties via `_foo` property syntax, which was [introduced with](https://github.com/Flowpack/Flowpack.NodeTemplates/issues/3) was reverted. This was done in preparation for the Neos 9 ESCR to...
This patter doesnt work currently ```yaml properties: image: type: ImageInterface ui: showInCreationDialog: true options: template: properties: imageCaption: '${data.image.copyrightNotice}' ``` as `data.image` is not converted. The dump looks like: ``` array(2)...
# This change introduces support for Neos 9. When starting the development it was eminent that not all features of NodeTemplates version 1.0 could be considered. To ease maintenance the...
Currently it seems that I cannot create a field with type array: ``` salutation: type: 'Sitegeist.PaperTiger:Field.RadioButtons' properties: name: 'salutation' label: 'Anrede' isRequired: true options: [label: 'Frau', value: 'Frau'], [label: 'Herr',...
Introduce `parentNode` as reference to the parent of the node the template is initially applied on. The parent of the outermost node the Neos UI creates. We should wait with...
https://github.com/Flowpack/Flowpack.NodeTemplates/issues/60
With NodeTemplates version 1.2 I've created the possibility to create template sites where you can add content elements to have a fast quick start (e.g. for blog posts). For this,...
Many exceptions are currently thrown like: ``` throw new PropertyIgnoredException( sprintf( 'Because property is not declared in NodeType. Got value `%s`.', json_encode($propertyValue) ), 1685869035209 ); ``` > Property "nonDeclaredProperty" in...
Property mapping and reference resolving
When building a more complex template and a loop, you might encounter the situation, when you only want to set this property on iteration 1 or something and otherwise return...