Magento 2:「system.xml」設定のデフォルト値


24

Magento 1では、次のことができました。

  1. etc/system.xmlファイル内のシステム構成セクションのユーザーインターフェイスの構成

  2. etc/config.xmlファイル内のこれらのフィールドにデフォルト値を設定します

舞台裏では、Magentoはからデータをロードしcore_config_data、何も設定されていない場合、デフォルトでにグローバルに設定された値になりますetc/config.xml。(簡易バージョン—それよりも少し複雑です

Magento 2でも同じことができますか?経由でUI要素を構成system.xmlすることは可能ですが、これらの設定にデフォルト値を設定することは可能ですか?その場合、これらの値はどこで、どのように構成する必要がありますか?


私は拡張機能を開発していますが、ADMINストア>>構成で拡張機能設定をドラッグしてソート可能なリストを配置したいので、この特定のフィールドにカスタムテンプレートを設定する必要があるため、カスタムテンプレートphtmlファイルを配置する方法はありますかsystem.xml内?
ヨゲシュトリベディ

回答:


42

はい。Magento2では、構成ファイル内でデフォルト値を定義できます。namespace \ modulename \ etc \ config.xml

<?xml version="1.0"?>
     <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
        <default>
            <sectionname>
                <groupname>
                    <fieldid>1</fieldid>
                </groupname>
            </sectionname>
        </default>
    </config>

システム構成system.xml

<?xml version="1.0"?>

    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
        <system>
            <tab id="namespace_tab" translate="label" sortOrder="1">
                <label>COnfig Title</label>
            </tab>
            <section id="sectionname" translate="label" sortOrder="1" showInDefault="1" 
    showInWebsite="1" showInStore="1">
                <label>Some Title</label>
                <tab>namespace_tab</tab>
                <resource>Namespace_Modulename::system_config</resource>
                <group id="groupname" translate="label" type="text" sortOrder="1" showInDefault="1" 
    showInWebsite="1" showInStore="1">
                    <label>Some Configuration</label>
                    <field id="fieldid" translate="label" type="select" sortOrder="1" 
    showInDefault="1" showInWebsite="1" showInStore="1">
                        <label>Enable in frontend</label>
                        <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                    </field>
                 </group>   
            </section>
        </system>
    </config>

1
セクション名、グループ名、およびフィールドIDはすべて、各セクションのタグIDと相関していることに注意してください。
エイリック

.phpファイルでこのデフォルト値を取得するにはどうすればよいですか
Anand Ontigeri

1
@AnandOntigeri use $this->scopeConfig->getValue( $path, \Magento\Store\Model\ScopeInterface::SCOPE_STORE );Where $this->scopeConfigは、クラス__construct()メソッドでインスタンス化する必要があります。 \Magento\Framework\Cache\ConfigInterface $scopeConfig
Vasilii Burlacu 16

設定された値の代わりにデフォルト値を取得することは可能ですか?Vasiliiのコメントは現在の値を提供しますが、サイトの現在の構成をデフォルト値と比較します(可能であればリセットします)。それをconfig.xml手動で読み込んで読み込むことなく実行できますか?
ジャック

@JaccoAmersfoortデフォルト値は、上書きされるまでのみアクセス可能です。Magento 2はシステム値をcore_config_dataテーブルに保存し、現在の値とは別にデフォルト値を保存しません。
エイリク

7

Magento2 デフォルト値を同じように設定できます Magento1。から連絡先モジュールを見るとMagento2

system.xml コンタクトモジュール用

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
    <system>
        <section id="contact" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
            <label>Contacts</label>
            <tab>general</tab>
            <resource>Magento_Contact::contact</resource>
            <group id="contact" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
                <label>Contact Us</label>
                <field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Enable Contact Us</label>
                    <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                    <backend_model>Magento\Contact\Model\System\Config\Backend\Links</backend_model>
                </field>
            </group>
            <group id="email" translate="label" type="text" sortOrder="50" showInDefault="1" showInWebsite="1" showInStore="1">
                <label>Email Options</label>
                <field id="recipient_email" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Send Emails To</label>
                    <validate>validate-email</validate>
                </field>
                <field id="sender_email_identity" translate="label" type="select" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Email Sender</label>
                    <source_model>Magento\Config\Model\Config\Source\Email\Identity</source_model>
                </field>
                <field id="email_template" translate="label comment" type="select" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Email Template</label>
                    <comment>Email template chosen based on theme fallback when "Default" option is selected.</comment>
                    <source_model>Magento\Config\Model\Config\Source\Email\Template</source_model>
                </field>
            </group>
        </section>
    </system>
</config>

および config.xmlコンタクトモジュール用

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
    <default>
            <contact>
                <enabled>1</enabled>
            </contact>
            <email>
                <recipient_email>
                    <![CDATA[hello@example.com]]>
                </recipient_email>
                <sender_email_identity>custom2</sender_email_identity>
                <email_template>contact_email_email_template</email_template>
            </email>
    </default>
</config>

デフォルト値を設定する場合は、次のようにIDを一致させる必要があります

<section id="contact"> <group id="contact"> <field id="enabled">

それから

 <default>
     <contact>
         <enabled>1</enabled>
     </contact>
 </default>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.