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\Ui\Component\Product;
use Magento\Framework\AuthorizationInterface;
use Magento\Framework\View\Element\UiComponentInterface;
use Magento\Framework\View\Element\UiComponent\ContextInterface;
use Magento\Ui\Component\AbstractComponent;
/**
* Class MassAction for Component Product
*/
class MassAction extends AbstractComponent
{
const NAME = 'massaction';
/**
* @var AuthorizationInterface
*/
private $authorization;
/**
* Constructor
*
* @param AuthorizationInterface $authorization
* @param ContextInterface $context
* @param UiComponentInterface[] $components
* @param array $data
*/
public function __construct(
AuthorizationInterface $authorization,
ContextInterface $context,
array $components = [],
array $data = []
) {
$this->authorization = $authorization;
parent::__construct($context, $components, $data);
}
/**
* @inheritdoc
*/
public function prepare() : void
{
$config = $this->getConfiguration();
foreach ($this->getChildComponents() as $actionComponent) {
$actionType = $actionComponent->getConfiguration()['type'];
if ($this->isActionAllowed($actionType)) {
// phpcs:ignore Magento2.Performance.ForeachArrayMerge
$config['actions'][] = array_merge($actionComponent->getConfiguration());
}
}
$origConfig = $this->getConfiguration();
if ($origConfig !== $config) {
$config = array_replace_recursive($config, $origConfig);
}
$this->setData('config', $config);
$this->components = [];
parent::prepare();
}
/**
* @inheritdoc
*/
public function getComponentName() : string
{
return static::NAME;
}
/**
* Check if the given type of action is allowed
*
* @param string $actionType
* @return bool
*/
public function isActionAllowed($actionType) : bool
{
$isAllowed = true;
switch ($actionType) {
case 'delete':
$isAllowed = $this->authorization->isAllowed('Magento_Catalog::products');
break;
case 'status':
$isAllowed = $this->authorization->isAllowed('Magento_Catalog::products');
break;
case 'attributes':
$isAllowed = $this->authorization->isAllowed('Magento_Catalog::update_attributes');
break;
default:
break;
}
return $isAllowed;
}
}
?>
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\Ui\Component\Product;
use Magento\Framework\AuthorizationInterface;
use Magento\Framework\View\Element\UiComponentInterface;
use Magento\Framework\View\Element\UiComponent\ContextInterface;
use Magento\Ui\Component\AbstractComponent;
/**
* Class MassAction for Component Product
*/
class MassAction extends AbstractComponent
{
const NAME = 'massaction';
/**
* @var AuthorizationInterface
*/
private $authorization;
/**
* Constructor
*
* @param AuthorizationInterface $authorization
* @param ContextInterface $context
* @param UiComponentInterface[] $components
* @param array $data
*/
public function __construct(
AuthorizationInterface $authorization,
ContextInterface $context,
array $components = [],
array $data = []
) {
$this->authorization = $authorization;
parent::__construct($context, $components, $data);
}
/**
* @inheritdoc
*/
public function prepare() : void
{
$config = $this->getConfiguration();
foreach ($this->getChildComponents() as $actionComponent) {
$actionType = $actionComponent->getConfiguration()['type'];
if ($this->isActionAllowed($actionType)) {
// phpcs:ignore Magento2.Performance.ForeachArrayMerge
$config['actions'][] = array_merge($actionComponent->getConfiguration());
}
}
$origConfig = $this->getConfiguration();
if ($origConfig !== $config) {
$config = array_replace_recursive($config, $origConfig);
}
$this->setData('config', $config);
$this->components = [];
parent::prepare();
}
/**
* @inheritdoc
*/
public function getComponentName() : string
{
return static::NAME;
}
/**
* Check if the given type of action is allowed
*
* @param string $actionType
* @return bool
*/
public function isActionAllowed($actionType) : bool
{
$isAllowed = true;
switch ($actionType) {
case 'delete':
$isAllowed = $this->authorization->isAllowed('Magento_Catalog::products');
break;
case 'status':
$isAllowed = $this->authorization->isAllowed('Magento_Catalog::products');
break;
case 'attributes':
$isAllowed = $this->authorization->isAllowed('Magento_Catalog::update_attributes');
break;
default:
break;
}
return $isAllowed;
}
}
Function Calls
None |
Stats
MD5 | 31fa0969d09a84336b899149f25bdf27 |
Eval Count | 0 |
Decode Time | 86 ms |