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\Catalog\Model\ResourceModel\Category\Attribute\Source;
/**
* Catalog category landing page attribute source
*
* @author Magento Core Team <[email protected]>
*/
class Layout extends \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource
{
/**
* @var array
*/
protected $_cmsLayouts;
/**
* @param array $cmsLayouts
*/
public function __construct(array $cmsLayouts = [])
{
$this->_cmsLayouts = $cmsLayouts;
}
/**
* Return cms layout update options
*
* @return array
*/
public function getAllOptions()
{
if (!$this->_options) {
foreach ($this->_cmsLayouts as $layoutName => $layoutConfig) {
$this->_options[] = ['value' => $layoutName, 'label' => $layoutConfig];
}
array_unshift($this->_options, ['value' => '', 'label' => __('No layout updates')]);
}
return $this->_options;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\ResourceModel\Category\Attribute\Source;
/**
* Catalog category landing page attribute source
*
* @author Magento Core Team <[email protected]>
*/
class Layout extends \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource
{
/**
* @var array
*/
protected $_cmsLayouts;
/**
* @param array $cmsLayouts
*/
public function __construct(array $cmsLayouts = [])
{
$this->_cmsLayouts = $cmsLayouts;
}
/**
* Return cms layout update options
*
* @return array
*/
public function getAllOptions()
{
if (!$this->_options) {
foreach ($this->_cmsLayouts as $layoutName => $layoutConfig) {
$this->_options[] = ['value' => $layoutName, 'label' => $layoutConfig];
}
array_unshift($this->_options, ['value' => '', 'label' => __('No layout updates')]);
}
return $this->_options;
}
}
Function Calls
None |
Stats
MD5 | d0f3e572c82553b75db6ffcb51d9aa11 |
Eval Count | 0 |
Decode Time | 91 ms |