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 use Pagekit\Captcha\CaptchaListener; return [ 'name' => 'system/captcha', ..
Decoded Output download
<?php
use Pagekit\Captcha\CaptchaListener;
return [
'name' => 'system/captcha',
'autoload' => [
'Pagekit\Captcha\' => 'src'
],
'resources' => [
'system/captcha:' => ''
],
'events' => [
'boot' => function ($event, $app) {
$app->subscribe(
new CaptchaListener
);
},
'view.system:modules/settings/views/settings' => function ($event, $view) use ($app) {
$view->data('$settings', [
'options' => [
$this->name => $this->config
]
]);
},
],
'config' => [
'recaptcha_sitekey' => '',
'recaptcha_secret' => '',
]
];
?>
Did this file decode correctly?
Original Code
<?php
use Pagekit\Captcha\CaptchaListener;
return [
'name' => 'system/captcha',
'autoload' => [
'Pagekit\\Captcha\\' => 'src'
],
'resources' => [
'system/captcha:' => ''
],
'events' => [
'boot' => function ($event, $app) {
$app->subscribe(
new CaptchaListener
);
},
'view.system:modules/settings/views/settings' => function ($event, $view) use ($app) {
$view->data('$settings', [
'options' => [
$this->name => $this->config
]
]);
},
],
'config' => [
'recaptcha_sitekey' => '',
'recaptcha_secret' => '',
]
];
Function Calls
None |
Stats
MD5 | b0e1fa9fe1483652fa89f53dc566cac8 |
Eval Count | 0 |
Decode Time | 77 ms |