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 namespace Webkul\Product\Helpers\Indexers\Price; class Configurable extends Abstra..
Decoded Output download
<?php
namespace Webkul\Product\Helpers\Indexers\Price;
class Configurable extends AbstractType
{
/**
* Returns product specific pricing for customer group
*
* @return array
*/
public function getIndices()
{
return [
'min_price' => $this->getMinimalPrice() ?? 0,
'regular_min_price' => $this->getRegularMinimalPrice() ?? 0,
'max_price' => $this->getMaximumPrice() ?? 0,
'regular_max_price' => $this->getRegularMaximumPrice() ?? 0,
'product_id' => $this->product->id,
'channel_id' => $this->channel->id,
'customer_group_id' => $this->customerGroup->id,
];
}
/**
* Get product minimal price.
*
* @return float
*/
public function getMinimalPrice($qty = null)
{
$minPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$variantIndexer = $variant->getTypeInstance()
->getPriceIndexer()
->setChannel($this->channel)
->setCustomerGroup($this->customerGroup)
->setProduct($variant);
$minPrices[] = $variantIndexer->getMinimalPrice();
}
if (empty($minPrices)) {
return 0;
}
return min($minPrices);
}
/**
* Get product regular minimal price.
*
* @return float
*/
public function getRegularMinimalPrice()
{
$minPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$minPrices[] = $variant->price;
}
if (empty($minPrices)) {
return 0;
}
return min($minPrices);
}
/**
* Get product maximum price.
*
* @return float
*/
public function getMaximumPrice()
{
$maxPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$variantIndexer = $variant->getTypeInstance()
->getPriceIndexer()
->setChannel($this->channel)
->setCustomerGroup($this->customerGroup)
->setProduct($variant);
$maxPrices[] = $variantIndexer->getMinimalPrice();
}
if (empty($maxPrices)) {
return 0;
}
return max($maxPrices);
}
/**
* Get product regular maximum price.
*
* @return float
*/
public function getRegularMaximumPrice()
{
$maxPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$maxPrices[] = $variant->price;
}
if (empty($maxPrices)) {
return 0;
}
return max($maxPrices);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Webkul\Product\Helpers\Indexers\Price;
class Configurable extends AbstractType
{
/**
* Returns product specific pricing for customer group
*
* @return array
*/
public function getIndices()
{
return [
'min_price' => $this->getMinimalPrice() ?? 0,
'regular_min_price' => $this->getRegularMinimalPrice() ?? 0,
'max_price' => $this->getMaximumPrice() ?? 0,
'regular_max_price' => $this->getRegularMaximumPrice() ?? 0,
'product_id' => $this->product->id,
'channel_id' => $this->channel->id,
'customer_group_id' => $this->customerGroup->id,
];
}
/**
* Get product minimal price.
*
* @return float
*/
public function getMinimalPrice($qty = null)
{
$minPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$variantIndexer = $variant->getTypeInstance()
->getPriceIndexer()
->setChannel($this->channel)
->setCustomerGroup($this->customerGroup)
->setProduct($variant);
$minPrices[] = $variantIndexer->getMinimalPrice();
}
if (empty($minPrices)) {
return 0;
}
return min($minPrices);
}
/**
* Get product regular minimal price.
*
* @return float
*/
public function getRegularMinimalPrice()
{
$minPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$minPrices[] = $variant->price;
}
if (empty($minPrices)) {
return 0;
}
return min($minPrices);
}
/**
* Get product maximum price.
*
* @return float
*/
public function getMaximumPrice()
{
$maxPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$variantIndexer = $variant->getTypeInstance()
->getPriceIndexer()
->setChannel($this->channel)
->setCustomerGroup($this->customerGroup)
->setProduct($variant);
$maxPrices[] = $variantIndexer->getMinimalPrice();
}
if (empty($maxPrices)) {
return 0;
}
return max($maxPrices);
}
/**
* Get product regular maximum price.
*
* @return float
*/
public function getRegularMaximumPrice()
{
$maxPrices = [];
foreach ($this->product->variants as $variant) {
if (! $variant->getTypeInstance()->isSaleable()) {
continue;
}
$maxPrices[] = $variant->price;
}
if (empty($maxPrices)) {
return 0;
}
return max($maxPrices);
}
}
Function Calls
| None |
Stats
| MD5 | ac4183f6edde7600caae2760af4ae36f |
| Eval Count | 0 |
| Decode Time | 81 ms |