* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ namespace PrestaShop\Module\FacetedSearch\Hook; class Design extends AbstractHook { const AVAILABLE_HOOKS = [ 'displayLeftColumn', ]; /** * Force this hook to be called here instance of using WidgetInterface * because Hook::isHookCallableOn before the instanceof function. * Which means is_callable always returns true with a __call usage. * * @param array $params */ public function displayLeftColumn(array $params) { return $this->module->fetch('module:ps_facetedsearch/ps_facetedsearch.tpl'); } }