Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/10/2009, 23:14
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: Obtener informacion application.ini Zend Framework

Primero en el bootstrap haces algo así:
Código PHP:
Ver original
  1. protected function _initAppConfig()
  2. {
  3.          return $this->getOptions();
  4. }

Luego en tus controllers puedes hacer esto:
Código PHP:
Ver original
  1. public function fooAction()
  2. {
  3.        $bootstrap = $this->getInvokeArg('bootstrap');
  4.        $config = $bootstrap->getResource('appConfig');
  5. }

Saludos.

Última edición por GatorV; 22/10/2009 a las 08:27