コード例 #1
0
ファイル: Module.php プロジェクト: N-Wouda/ps-webp-support
 protected function getCacheId($name = null)
 {
     $cache_id = parent::getCacheId($name);
     if ($this->context->cookie->exists() && $this->context->cookie->WebPSupport) {
         $cache_id .= '|w';
     } else {
         $cache_id .= '|j';
     }
     // j for conventional jpegs
     return $cache_id;
 }