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\App;
/**
* Backend Application which uses Magento Backend authentication process
* @api
* @since 100.0.2
*/
class BackendApp
{
/**
* @var null
*/
private $cookiePath;
/**
* @var null
*/
private $startupPage;
/**
* @var null
*/
private $aclResourceName;
/**
* @param string $cookiePath
* @param string $startupPage
* @param string $aclResourceName
*/
public function __construct(
$cookiePath,
$startupPage,
$aclResourceName
) {
$this->cookiePath = $cookiePath;
$this->startupPage = $startupPage;
$this->aclResourceName = $aclResourceName;
}
/**
* Cookie path for the application to set cookie to
*
* @return string
*/
public function getCookiePath()
{
return $this->cookiePath;
}
/**
* Startup Page of the application to redirect after login
*
* @return string
*/
public function getStartupPage()
{
return $this->startupPage;
}
/**
* ACL resource name to authorize access to
*
* @return string
*/
public function getAclResource()
{
return $this->aclResourceName;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\App;
/**
* Backend Application which uses Magento Backend authentication process
* @api
* @since 100.0.2
*/
class BackendApp
{
/**
* @var null
*/
private $cookiePath;
/**
* @var null
*/
private $startupPage;
/**
* @var null
*/
private $aclResourceName;
/**
* @param string $cookiePath
* @param string $startupPage
* @param string $aclResourceName
*/
public function __construct(
$cookiePath,
$startupPage,
$aclResourceName
) {
$this->cookiePath = $cookiePath;
$this->startupPage = $startupPage;
$this->aclResourceName = $aclResourceName;
}
/**
* Cookie path for the application to set cookie to
*
* @return string
*/
public function getCookiePath()
{
return $this->cookiePath;
}
/**
* Startup Page of the application to redirect after login
*
* @return string
*/
public function getStartupPage()
{
return $this->startupPage;
}
/**
* ACL resource name to authorize access to
*
* @return string
*/
public function getAclResource()
{
return $this->aclResourceName;
}
}
Function Calls
| None |
Stats
| MD5 | 5fb15d95413b66f90fd745eb149f713c |
| Eval Count | 0 |
| Decode Time | 99 ms |