### Resolving Element Folder URL in YOOtheme Source: https://github.com/yootheme/example-element/blob/main/UPGRADE-1.20.0.md The method for resolving the URL to the element folder has been updated. Previously, the `$config->get('url:')` method was used. Developers should now use `$file['dirname']` to obtain the path to the element folder. ```PHP $config->get('url:') ``` ```PHP $file['dirname'] ``` -------------------------------- ### Loading Field Configuration with Dot Notation Source: https://github.com/yootheme/example-element/blob/main/UPGRADE-1.20.0.md Loading field configurations now requires the use of dot notation. For instance, accessing the 'position' field from the Builder configuration has changed from `${builder:position}` to `${builder.position}`. ```Configuration Syntax ${builder:position} ``` ```Configuration Syntax ${builder.position} ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.