23 lines
945 B
PHP
23 lines
945 B
PHP
<?php
|
|
use PrestaShop\PrestaShop\Core\Product\Search\ProductSearchQuery;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\Pagination;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\ProductSearchContext;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\ProductSearchResult;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\Facet;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\SortOrder;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\ProductSearchProviderInterface;
|
|
use PrestaShop\PrestaShop\Core\Product\Search\FacetsRendererInterface;
|
|
abstract class ProductListingFrontController extends ProductListingFrontControllerCore
|
|
{
|
|
/*
|
|
* module: pagecache
|
|
* date: 2025-11-28 11:17:30
|
|
* version: 9.6.1
|
|
*/
|
|
protected function doProductSearch($template, $params = array(), $locale = null)
|
|
{
|
|
if (!Tools::getIsset('page_cache_dynamics_mods')) {
|
|
return parent::doProductSearch($template, $params, $locale);
|
|
}
|
|
}
|
|
} |