Questions tagged «component»


4
如何在Magento 2中使用ComponentRegistrar :: LIBRARY
在Magento 2中,我们有4种类型的组件,因为我一直在使用其中的三种,但是我的问题是如何使用const LIBRARY = 'library';组件。 顾名思义,这是包含第三方库的内容,但是任何人都可以给我一个有关如何包含库并在全局应用程序级别使用lib的示例。 /**#@+ * Different types of components */ const MODULE = 'module'; const LIBRARY = 'library'; const THEME = 'theme'; const LANGUAGE = 'language'; const LIBRARY = 'library';在Magento 2官方文档中找不到任何信息。注册您的组件。

3
将CLI命令添加到Magento 2的正确,受支持的方法
是否存在将您的CLI命令添加到Magento 2模块的正确且受官方支持的方法?根据我的收集,您的选择是 将命令类添加到via 文件的commands参数中Magento\Framework\Console\CommandListdi.xml 通过\Magento\Framework\Console\CommandLocator::register一个registration.php或多个cli_commands.php文件注册命令 这些选项都不是带有祝福的@api。尚不清楚,作为扩展开发人员,我们应该如何添加命令行脚本,以使它们在版本之间保持一致。 有人知道在Right™方法上是否有正式的Magento政策吗?
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.