123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
- <system>
- <section id="shipping" translate="label" type="text" sortOrder="310" showInDefault="1" showInWebsite="1" showInStore="1">
- <label>Shipping Settings</label>
- <tab>sales</tab>
- <resource>Magento_Shipping::config_shipping</resource>
- <group id="origin" translate="label" type="text" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="0">
- <label>Origin</label>
- <field id="country_id" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
- <label>Country</label>
- <frontend_class>countries</frontend_class>
- <source_model>Magento\Directory\Model\Config\Source\Country</source_model>
- </field>
- <field id="region_id" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
- <label>Region/State</label>
- </field>
- <field id="postcode" translate="label" type="text" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
- <label>ZIP/Postal Code</label>
- </field>
- <field id="city" translate="label" type="text" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="0">
- <label>City</label>
- </field>
- <field id="street_line1" translate="label" type="text" sortOrder="50" showInDefault="1" showInWebsite="1" showInStore="0">
- <label>Street Address</label>
- </field>
- <field id="street_line2" translate="label" type="text" sortOrder="60" showInDefault="1" showInWebsite="1" showInStore="0">
- <label>Street Address Line 2</label>
- </field>
- </group>
- <group id="shipping_policy" translate="label" type="text" sortOrder="120" showInDefault="1" showInWebsite="1" showInStore="1">
- <label>Shipping Policy Parameters</label>
- <field id="enable_shipping_policy" translate="label" type="select" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="0">
- <label>Apply custom Shipping Policy</label>
- <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
- </field>
- <field id="shipping_policy_content" translate="label" type="textarea" sortOrder="2" showInDefault="1" showInWebsite="1" showInStore="1">
- <label>Shipping Policy</label>
- <depends>
- <field id="enable_shipping_policy">1</field>
- </depends>
- </field>
- </group>
- </section>
- <section id="carriers" translate="label" type="text" sortOrder="320" showInDefault="1" showInWebsite="1" showInStore="1">
- <label>Shipping Methods</label>
- <tab>sales</tab>
- <resource>Magento_Shipping::carriers</resource>
- </section>
- </system>
- </config>
|