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 licen..
Decoded Output download
<?php
/**
*
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Controller\Adminhtml\System\Store;
class NewStore extends \Magento\Backend\Controller\Adminhtml\System\Store
{
/**
* @return \Magento\Backend\Model\View\Result\Forward
*/
public function execute()
{
if (!$this->_coreRegistry->registry('store_type')) {
$this->_coreRegistry->register('store_type', 'store');
}
$this->_coreRegistry->register('store_action', 'add');
/** @var \Magento\Backend\Model\View\Result\Forward $resultForward */
$resultForward = $this->resultForwardFactory->create();
return $resultForward->forward('editStore');
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
*
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Controller\Adminhtml\System\Store;
class NewStore extends \Magento\Backend\Controller\Adminhtml\System\Store
{
/**
* @return \Magento\Backend\Model\View\Result\Forward
*/
public function execute()
{
if (!$this->_coreRegistry->registry('store_type')) {
$this->_coreRegistry->register('store_type', 'store');
}
$this->_coreRegistry->register('store_action', 'add');
/** @var \Magento\Backend\Model\View\Result\Forward $resultForward */
$resultForward = $this->resultForwardFactory->create();
return $resultForward->forward('editStore');
}
}
Function Calls
| None |
Stats
| MD5 | 1dd0bd96cf913ea5af4c81a649214ae4 |
| Eval Count | 0 |
| Decode Time | 104 ms |