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\Bundle\Model\Product\Attribute\Source\Price;
use Magento\Eav\Model\ResourceModel\Entity\Attribute\OptionFactory;
use Magento\Framework\DB\Ddl\Table;
/**
* Bundle Price View Attribute Renderer
*
* @api
* @since 100.0.2
*/
class View extends \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource
{
/**
* @var OptionFactory
*/
protected $optionFactory;
/**
* @param OptionFactory $optionFactory
*/
public function __construct(OptionFactory $optionFactory)
{
$this->optionFactory = $optionFactory;
}
/**
* Get all options
*
* @return array
*/
public function getAllOptions()
{
if (null === $this->_options) {
$this->_options = [
['label' => __('Price Range'), 'value' => 0],
['label' => __('As Low as'), 'value' => 1],
];
}
return $this->_options;
}
/**
* Get a text for option value
*
* @param string|integer $value
* @return string|bool
*/
public function getOptionText($value)
{
foreach ($this->getAllOptions() as $option) {
if ($option['value'] == $value) {
return $option['label'];
}
}
return false;
}
/**
* Retrieve flat column definition
*
* @return array
*/
public function getFlatColumns()
{
$attributeCode = $this->getAttribute()->getAttributeCode();
return [
$attributeCode => [
'unsigned' => false,
'default' => null,
'extra' => null,
'type' => Table::TYPE_INTEGER,
'nullable' => true,
'comment' => 'Bundle Price View ' . $attributeCode . ' column',
],
];
}
/**
* Retrieve Select for update Attribute value in flat table
*
* @param int $store
* @return \Magento\Framework\DB\Select|null
*/
public function getFlatUpdateSelect($store)
{
return $this->optionFactory->create()->getFlatUpdateSelect($this->getAttribute(), $store, false);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Bundle\Model\Product\Attribute\Source\Price;
use Magento\Eav\Model\ResourceModel\Entity\Attribute\OptionFactory;
use Magento\Framework\DB\Ddl\Table;
/**
* Bundle Price View Attribute Renderer
*
* @api
* @since 100.0.2
*/
class View extends \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource
{
/**
* @var OptionFactory
*/
protected $optionFactory;
/**
* @param OptionFactory $optionFactory
*/
public function __construct(OptionFactory $optionFactory)
{
$this->optionFactory = $optionFactory;
}
/**
* Get all options
*
* @return array
*/
public function getAllOptions()
{
if (null === $this->_options) {
$this->_options = [
['label' => __('Price Range'), 'value' => 0],
['label' => __('As Low as'), 'value' => 1],
];
}
return $this->_options;
}
/**
* Get a text for option value
*
* @param string|integer $value
* @return string|bool
*/
public function getOptionText($value)
{
foreach ($this->getAllOptions() as $option) {
if ($option['value'] == $value) {
return $option['label'];
}
}
return false;
}
/**
* Retrieve flat column definition
*
* @return array
*/
public function getFlatColumns()
{
$attributeCode = $this->getAttribute()->getAttributeCode();
return [
$attributeCode => [
'unsigned' => false,
'default' => null,
'extra' => null,
'type' => Table::TYPE_INTEGER,
'nullable' => true,
'comment' => 'Bundle Price View ' . $attributeCode . ' column',
],
];
}
/**
* Retrieve Select for update Attribute value in flat table
*
* @param int $store
* @return \Magento\Framework\DB\Select|null
*/
public function getFlatUpdateSelect($store)
{
return $this->optionFactory->create()->getFlatUpdateSelect($this->getAttribute(), $store, false);
}
}
Function Calls
None |
Stats
MD5 | 87b2b5d2bc68361cae6c864848ed7a92 |
Eval Count | 0 |
Decode Time | 106 ms |