123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Pricing\Price;
- use Magento\Framework\Pricing\Price\AbstractPrice;
- use Magento\Framework\Pricing\Price\BasePriceProviderInterface;
- /**
- * Class RegularPrice
- */
- class RegularPrice extends AbstractPrice implements BasePriceProviderInterface
- {
- /**
- * Price type
- */
- const PRICE_CODE = 'regular_price';
- /**
- * Get price value
- *
- * @return float
- */
- public function getValue()
- {
- if ($this->value === null) {
- $price = $this->product->getPrice();
- $priceInCurrentCurrency = $this->priceCurrency->convertAndRound($price);
- $this->value = $priceInCurrentCurrency ? (float)$priceInCurrentCurrency : 0;
- }
- return $this->value;
- }
- }
|