Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2751686
HTMLHCaptchaField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
HTMLHCaptchaField.php
View Options
<?php
namespace
MediaWiki\Extension\ConfirmEdit\hCaptcha
;
use
MediaWiki\Html\Html
;
use
MediaWiki\HTMLForm\HTMLFormField
;
class
HTMLHCaptchaField
extends
HTMLFormField
{
/** @var string Public key parameter to be passed to hCaptcha. */
protected
$key
;
/** @var string Error returned by hCaptcha in the previous round. */
protected
$error
;
/**
* Parameters:
* - key: (string, required) Public key
* - error: (string) Error from previous round
* @param array $params
*/
public
function
__construct
(
array
$params
)
{
$params
+=
[
'error'
=>
null
];
parent
::
__construct
(
$params
);
$this
->
key
=
$params
[
'key'
];
$this
->
error
=
$params
[
'error'
];
$this
->
mName
=
'h-captcha-response'
;
}
/**
* @inheritDoc
*/
public
function
getInputHTML
(
$value
)
{
$out
=
$this
->
mParent
->
getOutput
();
$out
->
addHeadItem
(
'h-captcha'
,
"<script src=
\"
https://hcaptcha.com/1/api.js
\"
async defer></script>"
);
HCaptcha
::
addCSPSources
(
$out
->
getCSP
()
);
return
Html
::
element
(
'div'
,
[
'class'
=>
[
'h-captcha'
,
'mw-confirmedit-captcha-fail'
=>
(
bool
)
$this
->
error
,
],
'data-sitekey'
=>
$this
->
key
,
]
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 19:00 (1 d, 21 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
69/0d/720e83053b326d8a45132ef58fa0
Default Alt Text
HTMLHCaptchaField.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment