«dependency» 태그된 질문

2
어려운 종속성과 부드러운 종속성은 무엇입니까?
Magento 2 (안정된 버전)에서는이 명령을 실행할 bin/magento info:dependencies:show-modules수 있으며 modules-dependencies.csv다음과 같은 모든 모듈 종속성으로 호출 되는 응용 프로그램의 루트에 csv 파일 이 있습니다. Hard 의존성은 무엇이며 Soft 의존성은 무엇입니까? 각각의 예가 도움이 될 것입니다.

1
그룹 / 필드 세트 간의 system.xml 종속성
system.xml을 사용하면 다른 필드의 값에 따라 개별 필드의 가시성을 만들 수 있습니다. 이 기사는 Alan Storm : Depth Magento 시스템 구성에서 제공됩니다. 다음과 같이 보입니다 (여기에서 그의 예제 코드를 빌리고 있습니다). Location: app/code/local/Alanstormdotcom/Helloworld/etc/system.xml <config> <tabs> <helloconfig translate="label" module="helloworld"> <label>Hello Config</label> <sort_order>99999</sort_order> </helloconfig> </tabs> <sections> <helloworld_options translate="label" module="helloworld"> <label>Hello World Config …


1
관리자 구성 : 선택한 다중 선택 값에 따라 필드 표시
선택한 다중 선택 입력을 기반으로 필드를 표시하고 싶습니다 ... 다음 코드는 하나의 값만 선택하면 작동합니다. 하나 이상의 값을 선택하면 하나의 필드 만 표시됩니다 (먼저 소스 모델에서 선택됨) <enabled> <label>Enabled</label> ... <source_model>adminhtml/system_config_source_enabledisable</source_model> </enabled> <!-- this gives three options - shop, ebay, amazon --> <channels> ... <frontend_type>multiselect</frontend_type> <source_model>module/system_config_source_channels</source_model> <depends> <enabled>1</enabled> </depends> </channels> …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.