Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/06/2011, 07:55
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Zend_Navigation no me funciona en el view

Sí, si ves otros temas similares, el problema es que estas pisando el view por defecto, tienes que hacer algo así:
Código PHP:
Ver original
  1. protected function _initViewResources()
  2. {
  3.          $this->bootstrap('view');
  4.          $view = $this->getResource('view');
  5.          // Aqui ya trabajas con el view normal
  6. }

Saludos.