রুশভীর উত্তরে সংশোধন: এটির section/group/field
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$conf = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('section/group/field');
এছাড়াও যদি আপনি স্টোর ফিল্টার যুক্ত করতে চান উদাহরণস্বরূপ স্টোর কনফিগারেশন স্তরে সংরক্ষণ করা হয় তবে পাঠ্য প্রদর্শন করতে চান তবে নিম্নলিখিতগুলি যুক্ত করুন:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeScope = \Magento\Store\Model\ScopeInterface::SCOPE_STORES;
$conf = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('carriers/freeshipping/extra_info',$storeScope);
দ্বিতীয়ত সমালোচনার জন্য: ডিআই-এর মাধ্যমে আপনার ব্লক শ্রেণির নির্মাতাকে অন্তর্ভুক্ত করা ভাল। এখানে শুধু ধারণা