Open pawaclawczyk opened 10 years ago
The method renderBlock() of the helper for the PHP Templating component was renamed to block(). Its first argument is now expected to be a FormView instance.
renderBlock()
block()
FormView
Before:
<?php echo $view['form']->renderBlock('widget_attributes') ?>
After:
<?php echo $view['form']->block($form, 'widget_attributes') ?>
The method
renderBlock()
of the helper for the PHP Templating component was renamed toblock()
. Its first argument is now expected to be aFormView
instance.Before:
After: