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\Backend\Block\Cache;
/**
* @api
* @since 100.0.2
*/
class Additional extends \Magento\Backend\Block\Template
{
/**
* Check if application is in production mode
*
* @return bool
*/
public function isInProductionMode()
{
return $this->_appState->getMode() === \Magento\Framework\App\State::MODE_PRODUCTION;
}
/**
* @return string
*/
public function getCleanImagesUrl()
{
return $this->getUrl('*/*/cleanImages');
}
/**
* @return string
*/
public function getCleanMediaUrl()
{
return $this->getUrl('*/*/cleanMedia');
}
/**
* @return string
*/
public function getCleanStaticFilesUrl()
{
return $this->getUrl('*/*/cleanStaticFiles');
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Block\Cache;
/**
* @api
* @since 100.0.2
*/
class Additional extends \Magento\Backend\Block\Template
{
/**
* Check if application is in production mode
*
* @return bool
*/
public function isInProductionMode()
{
return $this->_appState->getMode() === \Magento\Framework\App\State::MODE_PRODUCTION;
}
/**
* @return string
*/
public function getCleanImagesUrl()
{
return $this->getUrl('*/*/cleanImages');
}
/**
* @return string
*/
public function getCleanMediaUrl()
{
return $this->getUrl('*/*/cleanMedia');
}
/**
* @return string
*/
public function getCleanStaticFilesUrl()
{
return $this->getUrl('*/*/cleanStaticFiles');
}
}
Function Calls
None |
Stats
MD5 | 6e8bb4be7b830073a0dc9dab4acd69a3 |
Eval Count | 0 |
Decode Time | 111 ms |