paths पर टैग किए गए जवाब

4
Phtml magento 2 में रूट डायरेक्टरी पाथ कैसे प्राप्त करें?
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $storeManager = $objectManager->get('\Magento\Store\Model\StoreManagerInterface'); $mediaPath = $fileSystem->getDirectoryRead(\Magento\Framework\App\Filesystem\DirectoryList::MEDIA)->getAbsolutePath(); यह मीडिया पथ देता है। Phtml पेज में किसी प्रोजेक्ट का रूट पथ कैसे प्राप्त करें?

4
Magento 2 में phtml फ़ाइल में मीडिया निर्देशिका पथ कैसे प्राप्त करें?
मीडिया निर्देशिका पथ प्राप्त करने के लिए नीचे दी गई विधि का उपयोग किया है , लेकिन यह एक त्रुटि देता है। $om = \Magento\Core\Model\ObjectManager::getInstance(); $directoryList = $om->get(\Magento\App\Filesystem\DirectoryList::class); $pubMediaDir = $directoryList->getPath(\Magento\App\Filesystem\DirectoryList::MEDIA); कृपया इसका हल ढूंढने में मेरी मदद करें।
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.