When using the default View class, helpers are automatically loaded when used. With TwigView, they're not loaded unless explicitly declared in the controller. e.g. public $helpers = array('Html', 'Form');.
Is there a way to do this automatically, like in the original View class?
When using the default View class, helpers are automatically loaded when used. With TwigView, they're not loaded unless explicitly declared in the controller. e.g.
public $helpers = array('Html', 'Form');
.Is there a way to do this automatically, like in the original View class?