คำถามติดแท็ก dependency

2
การพึ่งพายากคืออะไรและการพึ่งพาอาศัยที่นุ่มนวลคืออะไร
ใน Magento 2 (เวอร์ชั่นเสถียรใด ๆ ) คุณสามารถเรียกใช้คำสั่งนี้bin/magento info:dependencies:show-modulesและคุณจะได้รับไฟล์ csv ในรูทของแอปพลิเคชันของคุณที่modules-dependencies.csvมีการอ้างอิงโมดูลทั้งหมดที่มีลักษณะดังนี้: การพึ่งพาแบบยากคืออะไรและการพึ่งพาแบบ Soft คืออะไร ตัวอย่างของแต่ละคนจะช่วย

1
system.xml การพึ่งพาข้ามกลุ่ม / ชุดเขตข้อมูล
system.xml ช่วยให้เราสามารถมองเห็นแต่ละฟิลด์ขึ้นอยู่กับค่าจากฟิลด์อื่น บทความ goto นั้นมาจาก Alan Storm: In Depth Magento System Configuration ดูเหมือนว่านี่ (ฉันยืมรหัสตัวอย่างของเขาที่นี่): 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 Options</label> <tab>helloconfig</tab> <frontend_type>text</frontend_type> <sort_order>1000</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> <groups> <notes translate="label"> <label>Demo Of Config Fields NOTES</label> <frontend_type>text</frontend_type> <sort_order>1</sort_order> …

2
การพึ่งพาโมดูล Magento 2
มีกราฟ (หรือสิ่งที่เห็นได้ชัดเจน "" เพื่อดูว่าโมดูลหลักขึ้นอยู่กับซึ่งกันและกันใน Magento 2 หรือไม่) (ใช่ฉันลองใช้ Google แต่เขาไม่ต้องการบอกฉัน)

1
Admin config: แสดงฟิลด์ขึ้นอยู่กับค่าหลายค่าที่เลือก
ฉันต้องการแสดงฟิลด์ตามอินพุตแบบเลือกหลายรายการ ... รหัสต่อไปนี้ใช้งานได้หากเลือกเพียงหนึ่งค่า ถ้าฉันเลือกมากกว่าหนึ่งค่ามันจะแสดงเพียงหนึ่งฟิลด์ (เลือกครั้งแรกจากโมเดลต้นทาง) <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> <mail_template_shop> ... <depends> <enabled>1</enabled> <channels>shop</channels> </depends> </mail_template_shop> <mail_template_ebay> ... <depends> <enabled>1</enabled> <channels>ebay</channels> </depends> </mail_template_ebay> รหัสที่เกี่ยวข้อง: app / รหัส / core / Mage …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.