Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92679823
PhabricatorRecaptchaConfigOptions.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 22, 17:13
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 17:13 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22485049
Attached To
rPH Phabricator
PhabricatorRecaptchaConfigOptions.php
View Options
<?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.'
)),
);
}
}
Event Timeline
Log In to Comment