![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Model/ProductRender/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductRender; use Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoInterface; use Magento\Catalog\Api\Data\ProductRender\PriceInfoInterface; /** * @inheritdoc */ class PriceInfo extends \Magento\Framework\Model\AbstractExtensibleModel implements PriceInfoInterface { /** * @return string */ public function getFinalPrice() { return $this->getData('final_price'); } /** * @param string $finalPrice * @return void */ public function setFinalPrice($finalPrice) { $this->setData('final_price', $finalPrice); } /** * In case when we do not have max regular price - assume, that regular price are equal to final * and we can to retrieve final price instead * * @inheritdoc */ public function getMaxRegularPrice() { if (!$this->hasData('max_regular_price')) { return $this->getData('max_price'); } return $this->getData('max_regular_price'); } /** * @inheritdoc */ public function setMaxRegularPrice($maxRegularPrice) { $this->setData('max_regular_price', $maxRegularPrice); } /** * In case when we do not have min regular price - assume, that regular price are equal to final * and we can to retrieve final price instead * * @inheritdoc */ public function getMinimalRegularPrice() { if (!$this->hasData('minimal_regular_price')) { return $this->getData('minimal_price'); } return $this->getData('minimal_regular_price'); } /** * @inheritdoc */ public function setMinimalRegularPrice($minRegularPrice) { $this->setData('minimal_regular_price', $minRegularPrice); } /** * @inheritdoc */ public function setSpecialPrice($specialPrice) { $this->setData('special_price', $specialPrice); } /** * @inheritdoc */ public function getSpecialPrice() { return $this->getData('special_price'); } /** * @return string */ public function getMaxPrice() { return $this->getData('max_price'); } /** * @param string $maxPrice * @return void */ public function setMaxPrice($maxPrice) { $this->setData('max_price', $maxPrice); } /** * @return string */ public function getMinimalPrice() { return $this->getData('minimal_price'); } /** * @param string $minimalPrice * @return void */ public function setMinimalPrice($minimalPrice) { $this->setData('minimal_price', $minimalPrice); } /** * @return string */ public function getRegularPrice() { return $this->getData('regular_price'); } /** * @param string $regularPrice * @return void */ public function setRegularPrice($regularPrice) { $this->setData('regular_price', $regularPrice); } /** * @inheritdoc */ public function getFormattedPrices() { return $this->getData('formatted_prices'); } /** * @inheritdoc */ public function setFormattedPrices(FormattedPriceInfoInterface $formattedPriceInfo) { $this->setData('formatted_prices', $formattedPriceInfo); } /** * @inheritdoc */ public function getExtensionAttributes() { return $this->getData(self::EXTENSION_ATTRIBUTES_KEY); } /** * @inheritdoc */ public function setExtensionAttributes( \Magento\Catalog\Api\Data\ProductRender\PriceInfoExtensionInterface $extensionAttributes ) { $this->_setExtensionAttributes($extensionAttributes); } }