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\Category\Attribute\Source;
/**
* Catalog Category *_sort_by Attributes Source Model
*
* @author Magento Core Team <[email protected]>
*/
class Sortby extends \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource
{
/**
* Catalog config
*
* @var \Magento\Catalog\Model\Config
*/
protected $_catalogConfig;
/**
* Construct
*
* @param \Magento\Catalog\Model\Config $catalogConfig
*/
public function __construct(\Magento\Catalog\Model\Config $catalogConfig)
{
$this->_catalogConfig = $catalogConfig;
}
/**
* Retrieve Catalog Config Singleton
*
* @return \Magento\Catalog\Model\Config
*/
protected function _getCatalogConfig()
{
return $this->_catalogConfig;
}
/**
* @inheritdoc
*/
public function getAllOptions()
{
if ($this->_options === null) {
$this->_options = [['label' => __('Position'), 'value' => 'position']];
foreach ($this->_getCatalogConfig()->getAttributesUsedForSortBy() as $attribute) {
$this->_options[] = [
'label' => __($attribute['frontend_label']),
'value' => $attribute['attribute_code']
];
}
}
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\Category\Attribute\Source;
/**
* Catalog Category *_sort_by Attributes Source Model
*
* @author Magento Core Team <[email protected]>
*/
class Sortby extends \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource
{
/**
* Catalog config
*
* @var \Magento\Catalog\Model\Config
*/
protected $_catalogConfig;
/**
* Construct
*
* @param \Magento\Catalog\Model\Config $catalogConfig
*/
public function __construct(\Magento\Catalog\Model\Config $catalogConfig)
{
$this->_catalogConfig = $catalogConfig;
}
/**
* Retrieve Catalog Config Singleton
*
* @return \Magento\Catalog\Model\Config
*/
protected function _getCatalogConfig()
{
return $this->_catalogConfig;
}
/**
* @inheritdoc
*/
public function getAllOptions()
{
if ($this->_options === null) {
$this->_options = [['label' => __('Position'), 'value' => 'position']];
foreach ($this->_getCatalogConfig()->getAttributesUsedForSortBy() as $attribute) {
$this->_options[] = [
'label' => __($attribute['frontend_label']),
'value' => $attribute['attribute_code']
];
}
}
return $this->_options;
}
}
Function Calls
None |
Stats
MD5 | eeaa01e015a8f311cfe4a707909963bf |
Eval Count | 0 |
Decode Time | 91 ms |