Devo ottenere il file PATH per un'immagine nella pub/static/[VENDOR_THEME]
cartella.
Attualmente, posso farlo usando un aiutante:
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;
}
Esiste una funzione Magento integrata che lo gestisce, quindi non devo creare il mio aiuto?