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\Block\Product\View;
/**
* Product details block.
*
* Holds a group of blocks to show as tabs.
*
* @api
* @since 103.0.1
*/
class Details extends \Magento\Framework\View\Element\Template
{
/**
* Get sorted child block names.
*
* @param string $groupName
* @param string $callback
* @throws \Magento\Framework\Exception\LocalizedException
*
* @return array
* @since 103.0.1
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function getGroupSortedChildNames(string $groupName, string $callback): array
{
$groupChildNames = $this->getGroupChildNames($groupName);
$layout = $this->getLayout();
$childNamesSortOrder = [];
foreach ($groupChildNames as $childName) {
$alias = $layout->getElementAlias($childName);
$sortOrder = (int)$this->getChildData($alias, 'sort_order') ?? 0;
$childNamesSortOrder[$childName] = $sortOrder;
}
asort($childNamesSortOrder, SORT_NUMERIC);
return array_keys($childNamesSortOrder);
}
}
?>
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\Block\Product\View;
/**
* Product details block.
*
* Holds a group of blocks to show as tabs.
*
* @api
* @since 103.0.1
*/
class Details extends \Magento\Framework\View\Element\Template
{
/**
* Get sorted child block names.
*
* @param string $groupName
* @param string $callback
* @throws \Magento\Framework\Exception\LocalizedException
*
* @return array
* @since 103.0.1
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function getGroupSortedChildNames(string $groupName, string $callback): array
{
$groupChildNames = $this->getGroupChildNames($groupName);
$layout = $this->getLayout();
$childNamesSortOrder = [];
foreach ($groupChildNames as $childName) {
$alias = $layout->getElementAlias($childName);
$sortOrder = (int)$this->getChildData($alias, 'sort_order') ?? 0;
$childNamesSortOrder[$childName] = $sortOrder;
}
asort($childNamesSortOrder, SORT_NUMERIC);
return array_keys($childNamesSortOrder);
}
}
Function Calls
None |
Stats
MD5 | f9215ebeabd5524d01653dd507833db2 |
Eval Count | 0 |
Decode Time | 95 ms |