Let's say in my app_controller.php
I include a helper like this:
var $helpers = array('MyHelper' => array('value' => 'This is a value'));
As you can see above, I'm also setting an array to my Helper. How do I access this array in my view files? Anybody knows how I can do this?