How to integrate ezComponents with magento
问题 in a 'native' Zend Framework application I would enable the use of ezComponents by adding the autoloader of ezComponents to Zends autoloader: $autoLoader = Zend_Loader_Autoloader::getInstance(); require_once('../library/EZComponents/Base/src/base.php'); $autoLoader->pushAutoloader(array('ezcBase', 'autoload'), 'ezc'); Now, I'm wondering how I could do the same with Magento. Is there a way to extend Varien_Autoload (magentos autoloader) to enable easy integration of ezComponents? OR: Is there