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\Block\Adminhtml\Catalog\Product\Edit;
/**
* Adminhtml product edit tabs
*
* @author Magento Core Team <[email protected]>
*/
class Tabs extends \Magento\Catalog\Block\Adminhtml\Product\Edit\Tabs
{
/**
* @var string
*/
protected $_attributeTabBlock = \Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Attributes::class;
/**
* @return $this|void
*/
protected function _prepareLayout()
{
parent::_prepareLayout();
$this->addTab(
'bundle_items',
[
'label' => __('Bundle Items'),
'url' => $this->getUrl('adminhtml/*/bundles', ['_current' => true]),
'class' => 'ajax'
]
);
$this->bindShadowTabs('bundle_items', 'customer_options');
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit;
/**
* Adminhtml product edit tabs
*
* @author Magento Core Team <[email protected]>
*/
class Tabs extends \Magento\Catalog\Block\Adminhtml\Product\Edit\Tabs
{
/**
* @var string
*/
protected $_attributeTabBlock = \Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Attributes::class;
/**
* @return $this|void
*/
protected function _prepareLayout()
{
parent::_prepareLayout();
$this->addTab(
'bundle_items',
[
'label' => __('Bundle Items'),
'url' => $this->getUrl('adminhtml/*/bundles', ['_current' => true]),
'class' => 'ajax'
]
);
$this->bindShadowTabs('bundle_items', 'customer_options');
}
}
Function Calls
None |
Stats
MD5 | f2a213bd898e978527594193fad757ab |
Eval Count | 0 |
Decode Time | 89 ms |