You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to not overload the view files of blocks and reduce ram usage the contents of block configs should be requested instead of massiv assigned to the view. This will also fixed the problem to make sure if variables exists with isset() method and allows to define default values if not existing.
In order to not overload the view files of blocks and reduce ram usage the contents of block configs should be requested instead of massiv assigned to the view. This will also fixed the problem to make sure if variables exists with isset() method and allows to define default values if not existing.
Old:
new:
BC Breaking
The following variables will be removed in the view files by default:
$vars['foo']
, use$this->varValue('foo')
instead.$cfgs['foo']
, use$this->cfgValue('foo')
instead.$placeholders['foo']
, use$this->placeholderValue('foo')
instead.$extras['foo']
, use$this->extraValue('foo')
instead.The text was updated successfully, but these errors were encountered: