![]() 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/amasty/shopby/Model/Ajax/Counter/ |
<?php declare(strict_types=1); /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Improved Layered Navigation Base for Magento 2 */ namespace Amasty\Shopby\Model\Ajax\Counter; use Amasty\Shopby\Helper\State as StateHelper; use Amasty\Shopby\Model\ConfigProvider; use LogicException; use Magento\Framework\View\LayoutInterface; class CounterDataProvider { /** * @var LayoutInterface */ private $layout; /** * @var StateHelper */ private $stateHelper; /** * @var ConfigProvider */ private $configProvider; public function __construct(LayoutInterface $layout, StateHelper $stateHelper, ConfigProvider $configProvider) { $this->layout = $layout; $this->stateHelper = $stateHelper; $this->configProvider = $configProvider; } /** * @return array * @throws LogicException */ public function execute(): array { $products = $this->layout->getBlock('category.products'); if (!$products) { $products = $this->layout->getBlock('search.result'); } $productList = $products->getChildBlock('product_list') ?: $products->getChildBlock('search_result_list'); if (!$productList) { throw new LogicException('Unable to find product_list or search_result_list blocks'); } $responseData['productsCount'] = $productList->getLoadedProductCollection()->getSize(); if (!$this->configProvider->isAjaxEnabled()) { $responseData['url'] = $this->stateHelper->getCurrentUrl(); } return $responseData; } }