タグ付けされた質問 「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); 解決策を見つけるのを手伝ってください。

2
Magento 2:pub / staticファイルパスを取得する
フォルダ内の画像のファイルPATHを取得する必要がありpub/static/[VENDOR_THEME]ます。 現在、ヘルパーを使用してこれを行うことができます: public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Framework\View\Asset\Repository $assetRepository, \Magento\Framework\App\Filesystem\DirectoryList $directoryList ) { parent::__construct($context); $this->_assetRepo = $assetRepository; $this->_directoryList = $directoryList; } public function getImagePath($image) { return $this->_directoryList->getPath(DirectoryList::STATIC_VIEW) . '/' . $this->_assetRepo->getStaticViewFileContext()->getPath() . '/' . $image; } これを処理する組み込みのMagento関数があるので、独自のヘルパーを作成する必要はありませんか?
9 magento2  paths 

5
Magento2:製品の画像パスを取得
商品を入手するためのカスタムページを作成しました。すべての情報を取得しましたが、完全なイメージパスを取得する方法はわかりました。私はgetImage()を使用していますが、フルパスを取得する方法のみを画像で示しています。 <a href="<?php echo $this->getBaseUrl().$_item->getUrlKey();?>" title="<?php echo $_item->getName() ?>" class="product-image"><img src="<?php echo $this->getImage();?>" alt="<?php echo $_item->getName() ?>" />
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.