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\Block\Product\View\Options\Type;
/**
* Product options text type block
*
* @api
* @since 100.0.2
*/
class File extends \Magento\Catalog\Block\Product\View\Options\AbstractOptions
{
/**
* Returns info of file
*
* @return string
*/
public function getFileInfo()
{
$info = $this->getProduct()->getPreconfiguredValues()->getData('options/' . $this->getOption()->getId());
if (empty($info)) {
$info = new \Magento\Framework\DataObject();
} elseif (is_array($info)) {
$info = new \Magento\Framework\DataObject($info);
}
return $info;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Block\Product\View\Options\Type;
/**
* Product options text type block
*
* @api
* @since 100.0.2
*/
class File extends \Magento\Catalog\Block\Product\View\Options\AbstractOptions
{
/**
* Returns info of file
*
* @return string
*/
public function getFileInfo()
{
$info = $this->getProduct()->getPreconfiguredValues()->getData('options/' . $this->getOption()->getId());
if (empty($info)) {
$info = new \Magento\Framework\DataObject();
} elseif (is_array($info)) {
$info = new \Magento\Framework\DataObject($info);
}
return $info;
}
}
Function Calls
None |
Stats
MD5 | 4506a007b4418fa8be436c63dc0d5aa2 |
Eval Count | 0 |
Decode Time | 111 ms |