![]() 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/magento/module-review/Observer/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types = 1); namespace Magento\Review\Observer; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\Event\Observer; use Magento\Framework\Event\ObserverInterface; use Magento\Framework\UrlInterface; use Magento\Review\Block\Product\ReviewRenderer; use Magento\Store\Model\ScopeInterface; /** * Class PredispatchReviewObserver */ class PredispatchReviewObserver implements ObserverInterface { /** * Configuration path to review active setting */ const XML_PATH_REVIEW_ACTIVE = 'catalog/review/active'; /** * @var ScopeConfigInterface */ private $scopeConfig; /** * @var UrlInterface */ private $url; /** * PredispatchReviewObserver constructor. * * @param ScopeConfigInterface $scopeConfig * @param UrlInterface $url */ public function __construct( ScopeConfigInterface $scopeConfig, UrlInterface $url ) { $this->scopeConfig = $scopeConfig; $this->url = $url; } /** * Redirect review routes to 404 when review module is disabled. * * @param Observer $observer */ public function execute(Observer $observer) { if (!$this->scopeConfig->getValue( self::XML_PATH_REVIEW_ACTIVE, ScopeInterface::SCOPE_STORE ) ) { $defaultNoRouteUrl = $this->scopeConfig->getValue( 'web/default/no_route', ScopeInterface::SCOPE_STORE ); $redirectUrl = $this->url->getUrl($defaultNoRouteUrl); $observer->getControllerAction() ->getResponse() ->setRedirect($redirectUrl); } } }