Primero en el bootstrap haces algo así:
Código PHP:
Ver originalprotected function _initAppConfig()
{
return $this->getOptions();
}
Luego en tus controllers puedes hacer esto:
Código PHP:
Ver originalpublic function fooAction()
{
$bootstrap = $this->getInvokeArg('bootstrap');
$config = $bootstrap->getResource('appConfig');
}
Saludos.