vendor/pimcore/pimcore/bundles/EcommerceFrameworkBundle/PriceSystem/CachingPriceSystem.php line 34

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Bundle\EcommerceFrameworkBundle\PriceSystem;
  15. use Pimcore\Bundle\EcommerceFrameworkBundle\Exception\UnsupportedException;
  16. use Pimcore\Bundle\EcommerceFrameworkBundle\Model\CheckoutableInterface;
  17. /**
  18.  * Price system which caches created price info objects per product and request
  19.  */
  20. abstract class CachingPriceSystem extends AbstractPriceSystem implements CachingPriceSystemInterface
  21. {
  22.     /**
  23.      * @var PriceInfoInterface[][] $priceInfos
  24.      */
  25.     protected $priceInfos = [];
  26.     /**
  27.      * {@inheritdoc}
  28.      */
  29.     public function getPriceInfo(CheckoutableInterface $product$quantityScale 1$products null): PriceInfoInterface
  30.     {
  31.         $pId $product->getId();
  32.         if (!array_key_exists($pId$this->priceInfos) || !is_array($this->priceInfos[$pId])) {
  33.             $this->priceInfos[$pId] = [];
  34.         }
  35.         $quantityScaleKey = (string) $quantityScale;
  36.         if (empty($this->priceInfos[$pId][$quantityScaleKey])) {
  37.             $priceInfo $this->initPriceInfoInstance($quantityScale$product$products);
  38.             $this->priceInfos[$pId][$quantityScaleKey] = $priceInfo;
  39.         }
  40.         return $this->priceInfos[$pId][$quantityScaleKey];
  41.     }
  42.     /**
  43.      * {@inheritdoc}
  44.      */
  45.     public function loadPriceInfos($productEntries$options)
  46.     {
  47.         throw new UnsupportedException(__METHOD__  ' is not supported for ' get_class($this));
  48.     }
  49.     /**
  50.      * {@inheritdoc}
  51.      */
  52.     public function clearPriceInfos($productEntries$options)
  53.     {
  54.         throw new UnsupportedException(__METHOD__  ' is not supported for ' get_class($this));
  55.     }
  56.     /**
  57.      * {@inheritdoc}
  58.      */
  59.     public function filterProductIds($productIds$fromPrice$toPrice$order$offset$limit)
  60.     {
  61.         throw new UnsupportedException(__METHOD__  ' is not supported for ' get_class($this));
  62.     }
  63. }