| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/ProductRender/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/ProductRender/FormattedPriceInfo.php |
<?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;
/**
* @inheritdoc
*/
class FormattedPriceInfo extends \Magento\Framework\Model\AbstractExtensibleModel implements
FormattedPriceInfoInterface
{
/**
* @inheritdoc
*/
public function getFinalPrice()
{
return $this->getData('final_price');
}
/**
* @inheritdoc
*/
public function setFinalPrice($finalPrice)
{
$this->setData('final_price', $finalPrice);
}
/**
* @inheritdoc
*/
public function getMaxPrice()
{
return $this->getData('max_price');
}
/**
* @inheritdoc
*/
public function setMaxPrice($maxPrice)
{
$this->setData('max_price', $maxPrice);
}
/**
* @inheritdoc
*/
public function getMinimalPrice()
{
return $this->getData('minimal_price');
}
/**
* 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('min_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');
}
/**
* @inheritdoc
*/
public function setMinimalPrice($minimalPrice)
{
$this->setData('minimal_price', $minimalPrice);
}
/**
* @inheritdoc
*/
public function getRegularPrice()
{
return $this->getData('regular_price');
}
/**
* @inheritdoc
*/
public function setRegularPrice($regularPrice)
{
$this->setData('regular_price', $regularPrice);
}
/**
* @inheritdoc
*/
public function getExtensionAttributes()
{
return $this->getData(self::EXTENSION_ATTRIBUTES_KEY);
}
/**
* @inheritdoc
*/
public function setExtensionAttributes(
\Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface $extensionAttributes
) {
$this->_setExtensionAttributes($extensionAttributes);
}
}