コード例 #1
0
ファイル: Cache.php プロジェクト: xiaoguizhidao/ecommerce
 public function getProductVariations()
 {
     $cacheKey = array(__METHOD__);
     if ($this->isCacheEnabled && !is_null($cacheResult = $this->getCache()->getData($cacheKey))) {
         return $cacheResult;
     }
     return $this->getCache()->setData($cacheKey, parent::getProductVariations());
 }