17 lines
467 B
PHP
17 lines
467 B
PHP
<?php
|
|
if (!defined('_PS_VERSION_')) {exit;}
|
|
abstract class ProductListingFrontController extends ProductListingFrontControllerCore
|
|
{
|
|
/*
|
|
* module: pagecache
|
|
* date: 2024-03-10 16:57:05
|
|
* version: 8.8.59
|
|
*/
|
|
protected function doProductSearch($template, $params = array(), $locale = null)
|
|
{
|
|
if (!Tools::getIsset('page_cache_dynamics_mods')) {
|
|
return parent::doProductSearch($template, $params, $locale);
|
|
}
|
|
}
|
|
}
|