库不需要与magento集成,它主要是与API通信的包装器。
我希望能够使用此库并在控制器或模型中进行这些API调用。
我可以在哪里放图书馆?如何将它们添加到自动装带器?
答案 0 :(得分:49)
查看网站根目录中的/ lib文件夹。来自Magento Base Directories:
Magento的库文件夹就在哪里 基于非模块的Magento代码存在。 这包括大量的 允许Magento的系统代码 跑,以及一些第三 党的图书馆(包括Zend 框架)。图书馆也是 最后一个代码池Magento将搜索 尝试自动加载文件时。
因此,换句话说,如果您的库支持zend文件命名约定 - 将由magento autoloader找到并加载库类。否则,您可以使用Mage :: getBaseDir('lib')获取/ lib目录的路径并编写类似
的内容require_once(Mage::getBaseDir('lib') . '/EZComponents/Base/src/base.php');
答案 1 :(得分:9)
作为一种完美运作的解决方案: 您可以扩展varien_event_observer,创建自己的自动加载器功能,并使用controller_front_init_before事件将此自动加载器推送到__autoload堆栈前面。 这个集成日光浴和交响乐事件调度员的例子可以解释它:
class JeroenVermeulen_Solarium_Model_Observer_Autoloader extends Varien_Event_Observer {
/**
* This an observer function for the event 'controller_front_init_before'.
* It prepends our autoloader, so we can load the extra libraries.
*
* @param Varien_Event_Observer $event
*/
public function controllerFrontInitBefore( $event ) {
spl_autoload_register( array($this, 'load'), true, true );
}
/**
* This function can autoloads classes starting with:
* - Solarium
* - Symfony\Component\EventDispatcher
*
* @param string $class
*/
public static function load( $class )
{
if ( preg_match( '#^(Solarium|Symfony\\\\Component\\\\EventDispatcher)\b#', $class ) ) {
$phpFile = Mage::getBaseDir('lib') . '/' . str_replace( '\\', '/', $class ) . '.php';
require_once( $phpFile );
}
}
}
肯定你的图书馆应该在lib池中! 这个解决方案由@Jeroen Vermeulen提供,我感谢他:))