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\System\Config\Backend\Rss;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Api\ProductAttributeRepositoryInterface;
use Magento\Framework\App\Cache\TypeListInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\Config\Value as ConfigValue;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\Data\Collection\AbstractDb;
use Magento\Framework\Model\Context;
use Magento\Framework\Model\ResourceModel\AbstractResource;
use Magento\Framework\Registry;
class Category extends ConfigValue
{
/**
* @var ProductAttributeRepositoryInterface
*/
private $productAttributeRepository;
/**
* @param Context $context
* @param Registry $registry
* @param ScopeConfigInterface $config
* @param TypeListInterface $cacheTypeList
* @param AbstractResource|null $resource
* @param AbstractDb|null $resourceCollection
* @param array $data
* @param ProductAttributeRepositoryInterface|null $productAttributeRepository
*/
public function __construct(
Context $context,
Registry $registry,
ScopeConfigInterface $config,
TypeListInterface $cacheTypeList,
AbstractResource $resource = null,
AbstractDb $resourceCollection = null,
array $data = [],
ProductAttributeRepositoryInterface $productAttributeRepository = null
) {
parent::__construct($context, $registry, $config, $cacheTypeList, $resource, $resourceCollection, $data);
$this->productAttributeRepository = $productAttributeRepository ??
ObjectManager::getInstance()->get(ProductAttributeRepositoryInterface::class);
}
/**
* @inheritdoc
*/
public function afterSave()
{
if ($this->isValueChanged() && $this->getValue()) {
$updatedAtAttr = $this->productAttributeRepository->get(ProductInterface::UPDATED_AT);
if (!$updatedAtAttr->getUsedForSortBy()) {
$updatedAtAttr->setUsedForSortBy(true);
$this->productAttributeRepository->save($updatedAtAttr);
}
}
return parent::afterSave();
}
}
?>
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\System\Config\Backend\Rss;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Api\ProductAttributeRepositoryInterface;
use Magento\Framework\App\Cache\TypeListInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\Config\Value as ConfigValue;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\Data\Collection\AbstractDb;
use Magento\Framework\Model\Context;
use Magento\Framework\Model\ResourceModel\AbstractResource;
use Magento\Framework\Registry;
class Category extends ConfigValue
{
/**
* @var ProductAttributeRepositoryInterface
*/
private $productAttributeRepository;
/**
* @param Context $context
* @param Registry $registry
* @param ScopeConfigInterface $config
* @param TypeListInterface $cacheTypeList
* @param AbstractResource|null $resource
* @param AbstractDb|null $resourceCollection
* @param array $data
* @param ProductAttributeRepositoryInterface|null $productAttributeRepository
*/
public function __construct(
Context $context,
Registry $registry,
ScopeConfigInterface $config,
TypeListInterface $cacheTypeList,
AbstractResource $resource = null,
AbstractDb $resourceCollection = null,
array $data = [],
ProductAttributeRepositoryInterface $productAttributeRepository = null
) {
parent::__construct($context, $registry, $config, $cacheTypeList, $resource, $resourceCollection, $data);
$this->productAttributeRepository = $productAttributeRepository ??
ObjectManager::getInstance()->get(ProductAttributeRepositoryInterface::class);
}
/**
* @inheritdoc
*/
public function afterSave()
{
if ($this->isValueChanged() && $this->getValue()) {
$updatedAtAttr = $this->productAttributeRepository->get(ProductInterface::UPDATED_AT);
if (!$updatedAtAttr->getUsedForSortBy()) {
$updatedAtAttr->setUsedForSortBy(true);
$this->productAttributeRepository->save($updatedAtAttr);
}
}
return parent::afterSave();
}
}
Function Calls
None |
Stats
MD5 | 6aa366ea4d801ee94935bc0ff05f5af6 |
Eval Count | 0 |
Decode Time | 92 ms |