Non classé

Module Prestashop : régler un cache de 24h

Module Prestashop : régler un cache de 24h

Exemple sur le hookDisplayHome

public function hookDisplayHome($params)
{

$cacheId = $this->getCacheId($this->name.'-'.date("Ymd"));

if (!$this->isCached('monmodule.tpl', $cacheId)) {

.....
$this->smarty->assign(array(
'product' => $product,
));
}
}

return $this->display(__FILE__, 'monmodule.tpl', $cacheId );

}

 

Articles reliés

Pour aller encore plus loin

Voir tous les articles

It seems we can’t find what you’re looking for. Perhaps searching can help.