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.
*/
/**
* Captcha image model
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Captcha\Model\Config;
class Mode implements \Magento\Framework\Option\ArrayInterface
{
/**
* Get options for captcha mode selection field
*
* @return array
*/
public function toOptionArray()
{
return [
['label' => __('Always'), 'value' => \Magento\Captcha\Helper\Data::MODE_ALWAYS],
[
'label' => __('After number of attempts to login'),
'value' => \Magento\Captcha\Helper\Data::MODE_AFTER_FAIL
]
];
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Captcha image model
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Captcha\Model\Config;
class Mode implements \Magento\Framework\Option\ArrayInterface
{
/**
* Get options for captcha mode selection field
*
* @return array
*/
public function toOptionArray()
{
return [
['label' => __('Always'), 'value' => \Magento\Captcha\Helper\Data::MODE_ALWAYS],
[
'label' => __('After number of attempts to login'),
'value' => \Magento\Captcha\Helper\Data::MODE_AFTER_FAIL
]
];
}
}
Function Calls
| None |
Stats
| MD5 | 53160b26ab38622bfb93149487f08570 |
| Eval Count | 0 |
| Decode Time | 105 ms |