![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/mageworx/module-seoxtemplates/Model/Converter/Product/ |
<?php /** * Copyright © 2016 MageWorx. All rights reserved. * See LICENSE.txt for license details. */ namespace MageWorx\SeoXTemplates\Model\Converter\Product; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\Locale\ResolverInterface as LocalResolverInterface; use Magento\Framework\Pricing\PriceCurrencyInterface; use MageWorx\SeoXTemplates\Model\Converter\Product as ConverterProduct; use Magento\Framework\Pricing\Helper\Data as HelperPrice; use MageWorx\SeoXTemplates\Helper\Data as HelperData; use Magento\Tax\Helper\Data as HelperTax; use Magento\Catalog\Model\Product\Url as ProductUrl; use MageWorx\SeoXTemplates\Helper\Converter as HelperConverter; use Magento\Framework\Registry; class Url extends ConverterProduct { /** * @var Url */ protected $url; /** * @param PriceCurrencyInterface $priceCurrency * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param HelperData $helperData * @param HelperConverter $helperConverter * @param \MageWorx\SeoXTemplates\Model\ResourceModel\Category $resourceCategory * @param \Magento\Framework\App\Request\Http $request * @param \Magento\Catalog\Model\ResourceModel\Product $resourceProduct * @param Registry $registry * @param HelperPrice $helperPrice * @param HelperTax $helperTax * @param ProductUrl $url * @param \Magento\Catalog\Helper\Data $helperCatalog * @param \Magento\Store\Model\App\Emulation $emulation * @param ScopeConfigInterface $config * @param LocalResolverInterface $localeResolver */ public function __construct( PriceCurrencyInterface $priceCurrency, \Magento\Store\Model\StoreManagerInterface $storeManager, HelperData $helperData, HelperConverter $helperConverter, \MageWorx\SeoXTemplates\Model\ResourceModel\Category $resourceCategory, \Magento\Framework\App\Request\Http $request, \Magento\Catalog\Model\ResourceModel\Product $resourceProduct, Registry $registry, HelperPrice $helperPrice, HelperTax $helperTax, ProductUrl $url, \Magento\Catalog\Helper\Data $helperCatalog, \Magento\Store\Model\App\Emulation $emulation, ScopeConfigInterface $config, LocalResolverInterface $localeResolver ) { parent::__construct( $priceCurrency, $storeManager, $helperData, $helperConverter, $resourceCategory, $request, $resourceProduct, $registry, $helperPrice, $helperTax, $helperCatalog, $emulation, $config, $localeResolver ); $this->url = $url; } /** * * @return string */ protected function _convertStoreViewName() { return ''; } /** * * @return string */ protected function _convertStoreName() { return ''; } /** * * @return string */ protected function _convertWebsiteName() { return ''; } /** * * @return string */ protected function _convertCategory() { return ''; } /** * * @return string */ protected function _convertCategories() { return ''; } /** * * @param string $convertValue * @return string */ protected function _render($convertValue) { $convertValue = parent::_render($convertValue); return $this->url->formatUrlKey($convertValue); } }