Мне нужно получить файл 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, которая обрабатывает это, поэтому мне не нужно создавать свой собственный помощник?