Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Bundle\Pricing\Price;
use Magento\Bundle\Pricing\Adjustment\BundleCalculatorInterface;
use Magento\Catalog\Model\Product;
use Magento\Framework\Pricing\Price\AbstractPrice;
use Magento\Framework\Pricing\PriceCurrencyInterface;
/**
* Bundle option price model with final price.
*/
class BundleOptionRegularPrice extends AbstractPrice implements BundleOptionPriceInterface
{
/**
* Price model code.
*/
const PRICE_CODE = 'bundle_option_regular_price';
/**
* @var BundleCalculatorInterface
*/
protected $calculator;
/**
* @var BundleOptions
*/
private $bundleOptions;
/**
* @param Product $saleableItem
* @param float $quantity
* @param BundleCalculatorInterface $calculator
* @param PriceCurrencyInterface $priceCurrency
* @param BundleOptions $bundleOptions
*/
public function __construct(
Product $saleableItem,
$quantity,
BundleCalculatorInterface $calculator,
PriceCurrencyInterface $priceCurrency,
BundleOptions $bundleOptions
) {
parent::__construct($saleableItem, $quantity, $calculator, $priceCurrency);
$this->product->setQty($this->quantity);
$this->bundleOptions = $bundleOptions;
}
/**
* {@inheritdoc}
*/
public function getValue()
{
if (null === $this->value) {
$this->value = $this->bundleOptions->calculateOptions($this->product);
}
return $this->value;
}
/**
* Get Options with attached Selections collection.
*
* @return \Magento\Bundle\Model\ResourceModel\Option\Collection
*/
public function getOptions() : \Magento\Bundle\Model\ResourceModel\Option\Collection
{
return $this->bundleOptions->getOptions($this->product);
}
/**
* Get selection amount.
*
* @param \Magento\Bundle\Model\Selection $selection
* @return \Magento\Framework\Pricing\Amount\AmountInterface
*/
public function getOptionSelectionAmount($selection) : \Magento\Framework\Pricing\Amount\AmountInterface
{
return $this->bundleOptions->getOptionSelectionAmount(
$this->product,
$selection,
true
);
}
/**
* Get minimal amount of bundle price with options.
*
* @return \Magento\Framework\Pricing\Amount\AmountInterface
*/
public function getAmount() : \Magento\Framework\Pricing\Amount\AmountInterface
{
return $this->calculator->getOptionsAmount($this->product);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Bundle\Pricing\Price;
use Magento\Bundle\Pricing\Adjustment\BundleCalculatorInterface;
use Magento\Catalog\Model\Product;
use Magento\Framework\Pricing\Price\AbstractPrice;
use Magento\Framework\Pricing\PriceCurrencyInterface;
/**
* Bundle option price model with final price.
*/
class BundleOptionRegularPrice extends AbstractPrice implements BundleOptionPriceInterface
{
/**
* Price model code.
*/
const PRICE_CODE = 'bundle_option_regular_price';
/**
* @var BundleCalculatorInterface
*/
protected $calculator;
/**
* @var BundleOptions
*/
private $bundleOptions;
/**
* @param Product $saleableItem
* @param float $quantity
* @param BundleCalculatorInterface $calculator
* @param PriceCurrencyInterface $priceCurrency
* @param BundleOptions $bundleOptions
*/
public function __construct(
Product $saleableItem,
$quantity,
BundleCalculatorInterface $calculator,
PriceCurrencyInterface $priceCurrency,
BundleOptions $bundleOptions
) {
parent::__construct($saleableItem, $quantity, $calculator, $priceCurrency);
$this->product->setQty($this->quantity);
$this->bundleOptions = $bundleOptions;
}
/**
* {@inheritdoc}
*/
public function getValue()
{
if (null === $this->value) {
$this->value = $this->bundleOptions->calculateOptions($this->product);
}
return $this->value;
}
/**
* Get Options with attached Selections collection.
*
* @return \Magento\Bundle\Model\ResourceModel\Option\Collection
*/
public function getOptions() : \Magento\Bundle\Model\ResourceModel\Option\Collection
{
return $this->bundleOptions->getOptions($this->product);
}
/**
* Get selection amount.
*
* @param \Magento\Bundle\Model\Selection $selection
* @return \Magento\Framework\Pricing\Amount\AmountInterface
*/
public function getOptionSelectionAmount($selection) : \Magento\Framework\Pricing\Amount\AmountInterface
{
return $this->bundleOptions->getOptionSelectionAmount(
$this->product,
$selection,
true
);
}
/**
* Get minimal amount of bundle price with options.
*
* @return \Magento\Framework\Pricing\Amount\AmountInterface
*/
public function getAmount() : \Magento\Framework\Pricing\Amount\AmountInterface
{
return $this->calculator->getOptionsAmount($this->product);
}
}
Function Calls
None |
Stats
MD5 | 25914fd14621b87a588dd83a51f494ba |
Eval Count | 0 |
Decode Time | 98 ms |