Tema: mensaje
Ver Mensaje Individual
  #11 (permalink)  
Antiguo 13/10/2011, 09:59
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 17 años
Puntos: 845
Respuesta: mensaje

No lo setes directamente al layout, hazlo a través del view helper headMeta, algo asi:

layout.phtml
Código HTML:
Ver original
  1. <!DOCTYPE html>
  2.     <?php echo $this->headMeta(); ?>
  3. </head>
  4. ...

SomeController.php
Código PHP:
Ver original
  1. ...
  2. public function loginAction()
  3. {
  4.     ...
  5.     if ($result->isValid()) {
  6.         ....
  7.         $this->view->headMeta()->appendHttpEquiv('refresh', '10;URL=http://www.siscave.com.bo/administrador');        
  8.     }
  9. }
  10. ...

con respecto a lo de la url, podrías tener un helper que te construya las url's dependiendo del rol.

Saludos.
__________________
http://es.phptherightway.com/
thats us riders :)