I have some configuration values set in application.ini and i want to pass those values to the layout on application load. How can i do this from bootstrap ? For trial i tried doing this
In my Bootstrap initialization function:
$this->bootstrap('view');
$view = $this->getResource('view');
$view->layout()->whatever = "Some Value";
In layout:
<?php echo $this->layout()->whatever; ?>
But m not able to get the value to display in the layout.