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\Adminhtml\Product\Composite;
/**
* Adminhtml block for showing product options fieldsets
*
* @api
* @since 100.0.2
*/
class Fieldset extends \Magento\Framework\View\Element\Text\ListText
{
/**
*
* Iterates through fieldsets and fetches complete html
*
* @return string
*/
protected function _toHtml()
{
$children = $this->getLayout()->getChildBlocks($this->getNameInLayout());
$total = count($children);
$i = 0;
$this->setText('');
/** @var $block \Magento\Framework\View\Element\AbstractBlock */
foreach ($children as $block) {
$i++;
$block->setIsLastFieldset($i == $total);
$this->addText($block->toHtml());
}
return parent::_toHtml();
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Block\Adminhtml\Product\Composite;
/**
* Adminhtml block for showing product options fieldsets
*
* @api
* @since 100.0.2
*/
class Fieldset extends \Magento\Framework\View\Element\Text\ListText
{
/**
*
* Iterates through fieldsets and fetches complete html
*
* @return string
*/
protected function _toHtml()
{
$children = $this->getLayout()->getChildBlocks($this->getNameInLayout());
$total = count($children);
$i = 0;
$this->setText('');
/** @var $block \Magento\Framework\View\Element\AbstractBlock */
foreach ($children as $block) {
$i++;
$block->setIsLastFieldset($i == $total);
$this->addText($block->toHtml());
}
return parent::_toHtml();
}
}
Function Calls
None |
Stats
MD5 | d1d3eb844993b0db7ba0de1b3a8fe46c |
Eval Count | 0 |
Decode Time | 109 ms |