Ver Mensaje Individual
  #8 (permalink)  
Antiguo 26/05/2009, 20:02
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 framework - sub módulos

Código php:
Ver original
  1. $router = $frontController->getRouter();
  2. $router->addRoute(
  3.      'noticias',
  4.      new Zend_Controller_Router_Route('noticias/ver/:id',
  5.             array('controller' => 'index',
  6.                      'action' => 'verAction',
  7.                      'module' => 'news'
  8.              )
  9.       )
  10. );

Prueba así.

Saludos.