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 final class PhabricatorRecaptchaConfigOptions extends PhabricatorApplicationConfi..
Decoded Output download
<?php
final class PhabricatorRecaptchaConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Integration with Recaptcha');
}
public function getDescription() {
return pht('Configure Recaptcha captchas.');
}
public function getIcon() {
return 'fa-recycle';
}
public function getGroup() {
return 'core';
}
public function getOptions() {
return array(
$this->newOption('recaptcha.enabled', 'bool', false)
->setLocked(true)
->setBoolOptions(
array(
pht('Enable Recaptcha'),
pht('Disable Recaptcha'),
))
->setSummary(pht('Enable captchas with Recaptcha.'))
->setDescription(
pht(
'Enable recaptcha to require users solve captchas after a few '.
'failed login attempts. This hinders brute-force attacks against '.
'user passwords. For more information, see http://recaptcha.net/')),
$this->newOption('recaptcha.public-key', 'string', null)
->setLocked(true)
->setDescription(
pht('Recaptcha public key, obtained by signing up for Recaptcha.')),
$this->newOption('recaptcha.private-key', 'string', null)
->setHidden(true)
->setDescription(
pht('Recaptcha private key, obtained by signing up for Recaptcha.')),
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class PhabricatorRecaptchaConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Integration with Recaptcha');
}
public function getDescription() {
return pht('Configure Recaptcha captchas.');
}
public function getIcon() {
return 'fa-recycle';
}
public function getGroup() {
return 'core';
}
public function getOptions() {
return array(
$this->newOption('recaptcha.enabled', 'bool', false)
->setLocked(true)
->setBoolOptions(
array(
pht('Enable Recaptcha'),
pht('Disable Recaptcha'),
))
->setSummary(pht('Enable captchas with Recaptcha.'))
->setDescription(
pht(
'Enable recaptcha to require users solve captchas after a few '.
'failed login attempts. This hinders brute-force attacks against '.
'user passwords. For more information, see http://recaptcha.net/')),
$this->newOption('recaptcha.public-key', 'string', null)
->setLocked(true)
->setDescription(
pht('Recaptcha public key, obtained by signing up for Recaptcha.')),
$this->newOption('recaptcha.private-key', 'string', null)
->setHidden(true)
->setDescription(
pht('Recaptcha private key, obtained by signing up for Recaptcha.')),
);
}
}
Function Calls
None |
Stats
MD5 | bc7d573c7011b4bd58ae42f675909c0d |
Eval Count | 0 |
Decode Time | 94 ms |