任何人请告诉我如何在config标签下编写以下代码。
<modules>
<Tagalys_MerchandisingPage>
<version>0.1.0</version>
</Tagalys_MerchandisingPage>
</modules>
答案 0 :(得分:0)
etc / module.xml可以定义如下
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Tagalys_MerchandisingPage" setup_version="0.1.0">
</module>
</config>
和registration.php如下:
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Tagalys_MerchandisingPage',
__DIR__
);