J'ai besoin d'obtenir le fichier PATH pour une image dans le pub/static/[VENDOR_THEME]
dossier.
Actuellement, je peux le faire en utilisant un assistant:
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;
}
Existe-t-il une fonction Magento intégrée qui gère cela, donc je n'ai pas à créer mon propre assistant?