![]() 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/cartforge.co/app/code/Smartwave/Porto/Helper/ |
<?php /** * Copyright © 2015 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Smartwave\Porto\Helper; class Cssconfig extends \Magento\Framework\App\Helper\AbstractHelper { protected $_storeManager; protected $generatedCssFolder; protected $generatedCssPath; protected $generatedCssDir; /** * @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Catalog\Model\Session $catalogSession * @param \Magento\Framework\Stdlib\StringUtils $string * @param Category $catalogCategory * @param Product $catalogProduct * @param \Magento\Framework\Registry $coreRegistry * @param \Magento\Catalog\Model\Template\Filter\Factory $templateFilterFactory * @param string $templateFilterModel * @param \Magento\Tax\Api\Data\TaxClassKeyInterfaceFactory $taxClassKeyFactory * @param Config $taxConfig * @param \Magento\Tax\Api\Data\QuoteDetailsInterfaceFactory $quoteDetailsFactory * @param \Magento\Tax\Api\Data\QuoteDetailsItemInterfaceFactory $quoteDetailsItemFactory * @param \Magento\Tax\Api\TaxCalculationInterface $taxCalculationService * @param CustomerSession $customerSession * @param PriceCurrencyInterface $priceCurrency * @param ProductRepositoryInterface $productRepository * @param CategoryRepositoryInterface $categoryRepository * @param \Magento\Customer\Api\GroupRepositoryInterface $customerGroupRepository * @param \Magento\Customer\Api\Data\AddressInterfaceFactory $addressFactory * @param \Magento\Customer\Api\Data\RegionInterfaceFactory $regionFactory * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager ) { $this->_storeManager = $storeManager; $base = BP; $this->generatedCssFolder = 'porto/configed_css/'; $this->generatedCssPath = 'pub/media/'.$this->generatedCssFolder; $this->generatedCssDir = $base.'/'.$this->generatedCssPath; parent::__construct($context); } public function getBaseMediaUrl() { return $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA); } public function getCssConfigDir() { return $this->generatedCssDir; } public function getSettingsFile() { return $this->getBaseMediaUrl(). $this->generatedCssFolder . 'settings_' . $this->_storeManager->getStore()->getCode() . '.css'; } public function getDesignFile() { return $this->getBaseMediaUrl(). $this->generatedCssFolder . 'design_' . $this->_storeManager->getStore()->getCode() . '.css'; } public function getPortoWebDir() { return $this->getBaseMediaUrl().'porto/web/'; } }