-3
誰でも、下のコードをconfigタグの下に書く方法を教えてください。magento 2注意:未定義インデックス:modules
<modules>
<Tagalys_MerchandisingPage>
<version>0.1.0</version>
</Tagalys_MerchandisingPage>
</modules>
誰でも、下のコードをconfigタグの下に書く方法を教えてください。magento 2注意:未定義インデックス:modules
<modules>
<Tagalys_MerchandisingPage>
<version>0.1.0</version>
</Tagalys_MerchandisingPage>
</modules>
など/ 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__
);