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\Dashboard;
class CustomersNewest extends AjaxBlock
{
/**
* Gets latest customers list
*
* @return \Magento\Framework\Controller\Result\Raw
*/
public function execute()
{
$output = $this->layoutFactory->create()
->createBlock(\Magento\Backend\Block\Dashboard\Tab\Customers\Newest::class)
->toHtml();
$resultRaw = $this->resultRawFactory->create();
return $resultRaw->setContents($output);
}
}
?>
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\Dashboard;
class CustomersNewest extends AjaxBlock
{
/**
* Gets latest customers list
*
* @return \Magento\Framework\Controller\Result\Raw
*/
public function execute()
{
$output = $this->layoutFactory->create()
->createBlock(\Magento\Backend\Block\Dashboard\Tab\Customers\Newest::class)
->toHtml();
$resultRaw = $this->resultRawFactory->create();
return $resultRaw->setContents($output);
}
}
Function Calls
| None |
Stats
| MD5 | 233801bde4fd5608476912dc9f741bcc |
| Eval Count | 0 |
| Decode Time | 106 ms |