[SOLVED] Get Settings.yaml values in Fusion

Hi guys,

is there a way to get values from Settings.yaml in a .fusion file?
e.g.
test = ${q(Settings).property(‘Vendor.Package.property’)}

Thx,
Pat

There’s a Configuration EEL helper.

test = ${Configuration.setting('Vendor.Package.property')}

See http://neos.readthedocs.io/en/stable/References/EelHelpersReference.html#configuration

1 Like

Thank you Aske! It works.