Questions marquées «directory»

4
Comment obtenir le chemin du répertoire racine dans un magento phtml 2?
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $storeManager = $objectManager->get('\Magento\Store\Model\StoreManagerInterface'); $mediaPath = $fileSystem->getDirectoryRead(\Magento\Framework\App\Filesystem\DirectoryList::MEDIA)->getAbsolutePath(); il renvoie le chemin du média. Comment obtenir le chemin racine d'un projet dans une page phtml?

4
Comment obtenir le chemin du répertoire multimédia dans un fichier phtml dans magento 2?
Utilisé la méthode ci-dessous afin d'obtenir le chemin du répertoire multimédia , mais elle renvoie une erreur. $om = \Magento\Core\Model\ObjectManager::getInstance(); $directoryList = $om->get(\Magento\App\Filesystem\DirectoryList::class); $pubMediaDir = $directoryList->getPath(\Magento\App\Filesystem\DirectoryList::MEDIA); Merci de m'aider à trouver une solution.
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.