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\Backend\Block\System\Store\Grid\Render;
use Magento\Framework\DataObject;
/**
* Store render group
*
* @author Magento Core Team <[email protected]>
*/
class Group extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractRenderer
{
/**
* @inheritDoc
*/
public function render(DataObject $row)
{
if (!$row->getData($this->getColumn()->getIndex())) {
return null;
}
return '<a title="' . __(
'Edit Store'
) . '"
href="' .
$this->getUrl('adminhtml/*/editGroup', ['group_id' => $row->getGroupId()]) .
'">' .
$this->escapeHtml($row->getData($this->getColumn()->getIndex())) .
'</a><br />'
. '(' . __('Code') . ': ' . $this->escapeHtml($row->getGroupCode()) . ')';
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Block\System\Store\Grid\Render;
use Magento\Framework\DataObject;
/**
* Store render group
*
* @author Magento Core Team <[email protected]>
*/
class Group extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractRenderer
{
/**
* @inheritDoc
*/
public function render(DataObject $row)
{
if (!$row->getData($this->getColumn()->getIndex())) {
return null;
}
return '<a title="' . __(
'Edit Store'
) . '"
href="' .
$this->getUrl('adminhtml/*/editGroup', ['group_id' => $row->getGroupId()]) .
'">' .
$this->escapeHtml($row->getData($this->getColumn()->getIndex())) .
'</a><br />'
. '(' . __('Code') . ': ' . $this->escapeHtml($row->getGroupCode()) . ')';
}
}
Function Calls
None |
Stats
MD5 | 6782d6cd9a04123ab16dde95f3c2723a |
Eval Count | 0 |
Decode Time | 88 ms |