1
프론트 엔드의 바닥 글 섹션에 맞춤 링크를 표시하는 맞춤 모듈이 있습니다. 그런 다음 관리자 패널에 내 모듈 특정 구성이 있습니다.관리자 패널의 magento에서 맞춤 프론트 엔드 푸터 링크 사용/사용 안함 2
관리자 패널의 구성을 통해 프런트 엔드의 바닥 글에 대한 링크를 사용 또는 사용 중지하고 싶습니다.
어떻게하면됩니까? 도와주세요.
내가보기/프론트 엔드/레이아웃의 프론트 엔드에서 바닥 글 링크/default.xml에 추가 한 내 system.xml을 같은입니다
<referenceBlock name="footer_links">
<block class="Magento\Framework\View\Element\Html\Link\Current" name="Name">
<arguments>
<argument name="label" xsi:type="string">My custom link</argument>
<argument name="path" xsi:type="string">path/to/link</argument>
</arguments>
</block>
,
<!--For creating section -->
<section id="quotes" translate="label" type="text" sortOrder="320" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Module</label>
<!--Assign section to tab -->
<tab>mytab</tab>
<resource>Vendor_Module::configuration</resource>
<!--create group for fields in section -->
<group id="quotes" translate="label" type="text" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Group Name</label>
<!--create text type field -->
<field id="enabled" translate="label comment" sortOrder="7" type="select" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Enable the link</label>
<comment>select from the dropdown</comment>
<!-- source model which we created for drop down options -->
<source_model>Vendor\Module\Model\Config\Source\Module</source_model>
</field>
</group>
</referenceBlock>
납품업자 \ 모듈 \ 모델 \ 구성 \ 소스 \ 모듈
public function toOptionArray() {
return [
['value' => 'Yes', 'label' => __('Yes')],
['value' => 'No', 'label' => __('No')],
];
}