Hi
In my project I have a number of dynamic elements that are consistently on every page. I have put these in my layout.phtml
My question is: How can I send variables into my layout from my controllers?
If I want to send things from my controller I can use:
$this->view->whatever = "foo";
And receive it in the view with
echo $this->whatever;
I cannot figure out how to do the same with my layout. Perhaps there is a better way around the problem?