Questions tagged «class»


1
DI和Magento 2上的扩展块
每当我尝试扩展不是\ Magento \ Framework \ View \ Element \ Template的块时,我似乎都难以理解带有块的Magento 2依赖项注入,但最终会出错。 我想创建一个扩展Magento \ Theme \ Block \ Html \ Header \ Logo的非常基本的块类的块 -一切正常,直到我尝试在construct方法中进行依赖注入: <?php namespace Creare\Test\Block\Header; class Logo extends \Magento\Theme\Block\Html\Header\Logo { protected $_creareHelper; public function __construct( \Magento\Framework\View\Element\Template\Context $context, \Creare\Seo\Helper\Data $creareHelper, array $data = [] ) { $this->_creareHelper = $creareHelper; parent::__construct($context, …

3
Magento 2中生成哪些(类型)类?
在Magento 2中,有一组自动生成并存储在其中的类,var/generation它们在核心代码中使用。 在尝试通过复制核心模块之一来创建自定义模块时,我看到对于我的模块,还有一些生成的类。 在生成的类中,我看到了代理,拦截器,工厂...。 是否有自动生成的类的完整列表或类的类型? 附带问题...它们何时/何地生成?
9 magento2  class 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.