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\Widget\Grid\Column\Filter;
/**
* Text grid column filter
*
* @author Magento Core Team <[email protected]>
* @api
* @since 100.0.2
*/
class Text extends \Magento\Backend\Block\Widget\Grid\Column\Filter\AbstractFilter
{
/**
* {@inheritdoc}
*/
public function getHtml()
{
$html = '<input type="text" name="' .
$this->_getHtmlName() .
'" id="' .
$this->_getHtmlId() .
'" value="' .
$this->getEscapedValue() .
'" class="input-text admin__control-text no-changes"' .
$this->getUiId(
'filter',
$this->_getHtmlName()
) . ' />';
return $html;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Block\Widget\Grid\Column\Filter;
/**
* Text grid column filter
*
* @author Magento Core Team <[email protected]>
* @api
* @since 100.0.2
*/
class Text extends \Magento\Backend\Block\Widget\Grid\Column\Filter\AbstractFilter
{
/**
* {@inheritdoc}
*/
public function getHtml()
{
$html = '<input type="text" name="' .
$this->_getHtmlName() .
'" id="' .
$this->_getHtmlId() .
'" value="' .
$this->getEscapedValue() .
'" class="input-text admin__control-text no-changes"' .
$this->getUiId(
'filter',
$this->_getHtmlName()
) . ' />';
return $html;
}
}
Function Calls
None |
Stats
MD5 | 47b70bcf1a1154fa3d8c790567b2be12 |
Eval Count | 0 |
Decode Time | 84 ms |