Ver Mensaje Individual
  #23 (permalink)  
Antiguo 28/02/2012, 11: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: plugin AccessChek

¿Ya removiste el Autoloader?

Tu init debe estar mas o menos así:
Código PHP:
Ver original
  1. <?php
  2.  
  3. class Qclientes_Bootstrap extends Zend_Application_Module_Bootstrap
  4. {
  5.       protected  function _initPlugins()
  6.     {
  7.         $this->bootstrap('frontController');
  8.         $fc = $this->getResource('frontController');
  9.  
  10.         $acl = new Qclientes_Model_LibraryAcl();
  11.         $auth = Zend_Auth::getInstance();
  12.  
  13.         $fc ->registerPlugin(new Qclientes_Plugin_AccessCheck($acl, $auth));
  14.  
  15.     }
  16.  
  17. }