atk4 / ui

Robust and easy to use PHP Framework for Web Apps
https://atk4-ui.readthedocs.io
MIT License
443 stars 106 forks source link

No hardcoded template attributes #1979

Closed mvorisek closed 1 year ago

mvorisek commented 1 year ago

fix #1028

needed for #101

time to create/clone basic (template/element.html) template and to render it has been reduced by ~25% (related with #1976)

see template/element.html changes to understand how to migrate your templates

if you do not use custom templates, no action should be needed

in View class a few hacks are needed as {$attributes} tag cannot be put into all templates currently, I belive the hacks are ok otherwise a massive HtmlTemplate rewrite would be needed to support these cases


regex to find templates /wo attributes tag: (?<!\s|\S)^((?!attributes)(\s|\S))*$(?!\s|\S)