Gracias.
Le agregué el redirector y me lanza un error, me dice que tiene un bucle de redireccionamiento, no entiendo porque.
Cual sería la mejor forma de redireccionar en un plugin?
Código PHP:
Ver originalif (!$this->_acl->isAllowed($role, $resource, $action)) {
if (!$this->_auth->hasIdentity()) {
$module = self::NO_AUTH_MODULE;
$controller = self::NO_AUTH_CONTROLLER;
$action = self::NO_AUTH_ACTION;
$this->_redirector = Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
$this->_redirector->setGotoSimple("nopermitido","index","default");
} else {
$module = self::NO_ACL_MODULE;
$controller = self::NO_ACL_CONTROLLER;
$action = self::NO_ACL_ACTION;
}