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.
*/
declare(strict_types=1);
namespace Magento\Catalog\Model\Config;
use Magento\Framework\App\Config\ScopeConfigInterface;
/**
* Config for catalog media
*/
class CatalogMediaConfig
{
private const XML_PATH_CATALOG_MEDIA_URL_FORMAT = 'web/url/catalog_media_url_format';
public const IMAGE_OPTIMIZATION_PARAMETERS = 'image_optimization_parameters';
public const HASH = 'hash';
/**
* @var ScopeConfigInterface
*/
private $scopeConfig;
/**
* @param ScopeConfigInterface $scopeConfig
*/
public function __construct(ScopeConfigInterface $scopeConfig)
{
$this->scopeConfig = $scopeConfig;
}
/**
* Get media URL format for catalog images
*
* @param string $scopeType
* @param null|int|string $scopeCode
* @return string
*/
public function getMediaUrlFormat($scopeType = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, $scopeCode = null): string
{
$value = $this->scopeConfig->getValue(
self::XML_PATH_CATALOG_MEDIA_URL_FORMAT,
$scopeType,
$scopeCode
);
if ($value === null) {
return self::HASH;
}
return (string)$value;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Catalog\Model\Config;
use Magento\Framework\App\Config\ScopeConfigInterface;
/**
* Config for catalog media
*/
class CatalogMediaConfig
{
private const XML_PATH_CATALOG_MEDIA_URL_FORMAT = 'web/url/catalog_media_url_format';
public const IMAGE_OPTIMIZATION_PARAMETERS = 'image_optimization_parameters';
public const HASH = 'hash';
/**
* @var ScopeConfigInterface
*/
private $scopeConfig;
/**
* @param ScopeConfigInterface $scopeConfig
*/
public function __construct(ScopeConfigInterface $scopeConfig)
{
$this->scopeConfig = $scopeConfig;
}
/**
* Get media URL format for catalog images
*
* @param string $scopeType
* @param null|int|string $scopeCode
* @return string
*/
public function getMediaUrlFormat($scopeType = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, $scopeCode = null): string
{
$value = $this->scopeConfig->getValue(
self::XML_PATH_CATALOG_MEDIA_URL_FORMAT,
$scopeType,
$scopeCode
);
if ($value === null) {
return self::HASH;
}
return (string)$value;
}
}
Function Calls
| None |
Stats
| MD5 | 1f75eaee0592bd048fa2ba34e5864db6 |
| Eval Count | 0 |
| Decode Time | 88 ms |