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.
*/
/**
* customers defined options
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Options\Type;
class Select extends \Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Options\Type\AbstractType
{
/**
* @var string
*/
protected $_template = 'Magento_Catalog::catalog/product/edit/options/type/select.phtml';
/**
* Class constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setCanEditPrice(true);
$this->setCanReadPrice(true);
}
/**
* @return $this
*/
protected function _prepareLayout()
{
$this->addChild(
'add_select_row_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Add New Row'),
'class' => 'add add-select-row',
'id' => 'product_option_<%- data.option_id %>_add_select_row'
]
);
$this->addChild(
'delete_select_row_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Delete Row'),
'class' => 'delete delete-select-row icon-btn',
'id' => 'product_option_<%- data.id %>_select_<%- data.select_id %>_delete'
]
);
return parent::_prepareLayout();
}
/**
* @return string
*/
public function getAddButtonHtml()
{
return $this->getChildHtml('add_select_row_button');
}
/**
* @return string
*/
public function getDeleteButtonHtml()
{
return $this->getChildHtml('delete_select_row_button');
}
/**
* Return select input for price type
*
* @param string $extraParams
* @return string
*/
public function getPriceTypeSelectHtml($extraParams = '')
{
$this->getChildBlock(
'option_price_type'
)->setData(
'id',
'product_option_<%- data.id %>_select_<%- data.select_id %>_price_type'
)->setName(
'product[options][<%- data.id %>][values][<%- data.select_id %>][price_type]'
);
return parent::getPriceTypeSelectHtml($extraParams);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* customers defined options
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Options\Type;
class Select extends \Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Options\Type\AbstractType
{
/**
* @var string
*/
protected $_template = 'Magento_Catalog::catalog/product/edit/options/type/select.phtml';
/**
* Class constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setCanEditPrice(true);
$this->setCanReadPrice(true);
}
/**
* @return $this
*/
protected function _prepareLayout()
{
$this->addChild(
'add_select_row_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Add New Row'),
'class' => 'add add-select-row',
'id' => 'product_option_<%- data.option_id %>_add_select_row'
]
);
$this->addChild(
'delete_select_row_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Delete Row'),
'class' => 'delete delete-select-row icon-btn',
'id' => 'product_option_<%- data.id %>_select_<%- data.select_id %>_delete'
]
);
return parent::_prepareLayout();
}
/**
* @return string
*/
public function getAddButtonHtml()
{
return $this->getChildHtml('add_select_row_button');
}
/**
* @return string
*/
public function getDeleteButtonHtml()
{
return $this->getChildHtml('delete_select_row_button');
}
/**
* Return select input for price type
*
* @param string $extraParams
* @return string
*/
public function getPriceTypeSelectHtml($extraParams = '')
{
$this->getChildBlock(
'option_price_type'
)->setData(
'id',
'product_option_<%- data.id %>_select_<%- data.select_id %>_price_type'
)->setName(
'product[options][<%- data.id %>][values][<%- data.select_id %>][price_type]'
);
return parent::getPriceTypeSelectHtml($extraParams);
}
}
Function Calls
| None |
Stats
| MD5 | fea607f31cc79c34679898002f683825 |
| Eval Count | 0 |
| Decode Time | 112 ms |