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.
*/
namespace Magento\Catalog\Model\Config\Source\Product\Options;
use Magento\Catalog\Model\Config\Source\ProductPriceOptionsInterface;
/**
* Price types mode source
*
* @author Magento Core Team <[email protected]>
*/
class Price implements ProductPriceOptionsInterface
{
/**
* Store manager.
*
* @var \Magento\Store\Model\StoreManagerInterface
*/
private $storeManager;
/**
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
*/
public function __construct(\Magento\Store\Model\StoreManagerInterface $storeManager)
{
$this->storeManager = $storeManager;
}
/**
* {@inheritdoc}
*
* @codeCoverageIgnore
*/
public function toOptionArray()
{
return [
['value' => self::VALUE_FIXED, 'label' => __('Fixed')],
['value' => self::VALUE_PERCENT, 'label' => __('Percent')],
];
}
/**
* Get option array of prefixes.
*
* @return array
*/
public function prefixesToOptionArray()
{
return [
['value' => self::VALUE_FIXED, 'label' => $this->getCurrencySymbol()],
['value' => self::VALUE_PERCENT, 'label' => '%'],
];
}
/**
* Get currency symbol.
*
* @return string
*/
private function getCurrencySymbol()
{
return $this->storeManager->getStore()->getBaseCurrency()->getCurrencySymbol();
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Config\Source\Product\Options;
use Magento\Catalog\Model\Config\Source\ProductPriceOptionsInterface;
/**
* Price types mode source
*
* @author Magento Core Team <[email protected]>
*/
class Price implements ProductPriceOptionsInterface
{
/**
* Store manager.
*
* @var \Magento\Store\Model\StoreManagerInterface
*/
private $storeManager;
/**
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
*/
public function __construct(\Magento\Store\Model\StoreManagerInterface $storeManager)
{
$this->storeManager = $storeManager;
}
/**
* {@inheritdoc}
*
* @codeCoverageIgnore
*/
public function toOptionArray()
{
return [
['value' => self::VALUE_FIXED, 'label' => __('Fixed')],
['value' => self::VALUE_PERCENT, 'label' => __('Percent')],
];
}
/**
* Get option array of prefixes.
*
* @return array
*/
public function prefixesToOptionArray()
{
return [
['value' => self::VALUE_FIXED, 'label' => $this->getCurrencySymbol()],
['value' => self::VALUE_PERCENT, 'label' => '%'],
];
}
/**
* Get currency symbol.
*
* @return string
*/
private function getCurrencySymbol()
{
return $this->storeManager->getStore()->getBaseCurrency()->getCurrencySymbol();
}
}
Function Calls
None |
Stats
MD5 | 0a4f2937c87e0fa1568858bd6b892ecd |
Eval Count | 0 |
Decode Time | 90 ms |