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\Tab;
/**
* Adminhtml catalog product bundle items tab block
*
* @author Magento Core Team <[email protected]>
*/
class Bundle extends \Magento\Backend\Block\Widget implements \Magento\Backend\Block\Widget\Tab\TabInterface
{
/**
* @var mixed
*/
protected $_product = null;
/**
* @var string
*/
protected $_template = 'Magento_Bundle::product/edit/bundle.phtml';
/**
* Core registry
*
* @var \Magento\Framework\Registry
*/
protected $_coreRegistry = null;
/**
* @param \Magento\Backend\Block\Template\Context $context
* @param \Magento\Framework\Registry $registry
* @param array $data
*/
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Framework\Registry $registry,
array $data = []
) {
$this->_coreRegistry = $registry;
parent::__construct($context, $data);
}
/**
* @return string
*/
public function getTabUrl()
{
return $this->getUrl('adminhtml/bundle_product_edit/form', ['_current' => true]);
}
/**
* @return string
*/
public function getTabClass()
{
return 'ajax';
}
/**
* Prepare layout
*
* @return $this
*/
protected function _prepareLayout()
{
$this->setData('opened', true);
$this->addChild(
'add_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Create New Option'),
'class' => 'add',
'id' => 'add_new_option',
'on_click' => 'bOption.add()'
]
);
$this->setChild(
'options_box',
$this->getLayout()->createBlock(
\Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle\Option::class,
'adminhtml.catalog.product.edit.tab.bundle.option'
)
);
return parent::_prepareLayout();
}
/**
* Check block readonly
*
* @return boolean
*/
public function isReadonly()
{
return $this->getProduct()->getCompositeReadonly();
}
/**
* @return string
*/
public function getAddButtonHtml()
{
return $this->getChildHtml('add_button');
}
/**
* @return string
*/
public function getOptionsBoxHtml()
{
return $this->getChildHtml('options_box');
}
/**
* @return string
*/
public function getFieldSuffix()
{
return 'product';
}
/**
* @return mixed
*/
public function getProduct()
{
return $this->_coreRegistry->registry('product');
}
/**
* @return \Magento\Framework\Phrase
*/
public function getTabLabel()
{
return __('Bundle Items');
}
/**
* @return \Magento\Framework\Phrase
*/
public function getTabTitle()
{
return __('Bundle Items');
}
/**
* @return bool
*/
public function canShowTab()
{
return true;
}
/**
* @return bool
*/
public function isHidden()
{
return false;
}
/**
* Get parent tab code
*
* @return string
*/
public function getParentTab()
{
return 'product-details';
}
}
?>
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\Tab;
/**
* Adminhtml catalog product bundle items tab block
*
* @author Magento Core Team <[email protected]>
*/
class Bundle extends \Magento\Backend\Block\Widget implements \Magento\Backend\Block\Widget\Tab\TabInterface
{
/**
* @var mixed
*/
protected $_product = null;
/**
* @var string
*/
protected $_template = 'Magento_Bundle::product/edit/bundle.phtml';
/**
* Core registry
*
* @var \Magento\Framework\Registry
*/
protected $_coreRegistry = null;
/**
* @param \Magento\Backend\Block\Template\Context $context
* @param \Magento\Framework\Registry $registry
* @param array $data
*/
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Framework\Registry $registry,
array $data = []
) {
$this->_coreRegistry = $registry;
parent::__construct($context, $data);
}
/**
* @return string
*/
public function getTabUrl()
{
return $this->getUrl('adminhtml/bundle_product_edit/form', ['_current' => true]);
}
/**
* @return string
*/
public function getTabClass()
{
return 'ajax';
}
/**
* Prepare layout
*
* @return $this
*/
protected function _prepareLayout()
{
$this->setData('opened', true);
$this->addChild(
'add_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Create New Option'),
'class' => 'add',
'id' => 'add_new_option',
'on_click' => 'bOption.add()'
]
);
$this->setChild(
'options_box',
$this->getLayout()->createBlock(
\Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle\Option::class,
'adminhtml.catalog.product.edit.tab.bundle.option'
)
);
return parent::_prepareLayout();
}
/**
* Check block readonly
*
* @return boolean
*/
public function isReadonly()
{
return $this->getProduct()->getCompositeReadonly();
}
/**
* @return string
*/
public function getAddButtonHtml()
{
return $this->getChildHtml('add_button');
}
/**
* @return string
*/
public function getOptionsBoxHtml()
{
return $this->getChildHtml('options_box');
}
/**
* @return string
*/
public function getFieldSuffix()
{
return 'product';
}
/**
* @return mixed
*/
public function getProduct()
{
return $this->_coreRegistry->registry('product');
}
/**
* @return \Magento\Framework\Phrase
*/
public function getTabLabel()
{
return __('Bundle Items');
}
/**
* @return \Magento\Framework\Phrase
*/
public function getTabTitle()
{
return __('Bundle Items');
}
/**
* @return bool
*/
public function canShowTab()
{
return true;
}
/**
* @return bool
*/
public function isHidden()
{
return false;
}
/**
* Get parent tab code
*
* @return string
*/
public function getParentTab()
{
return 'product-details';
}
}
Function Calls
None |
Stats
MD5 | 694dcd9646ae24db3aaae4084d60205c |
Eval Count | 0 |
Decode Time | 109 ms |