Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2753863
TurnstileAuthenticationRequest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
887 B
Referenced Files
None
Subscribers
None
TurnstileAuthenticationRequest.php
View Options
<?php
namespace
MediaWiki\Extension\ConfirmEdit\Turnstile
;
use
MediaWiki\Auth\AuthenticationRequest
;
use
MediaWiki\Extension\ConfirmEdit\Auth\CaptchaAuthenticationRequest
;
/**
* Authentication request for Turnstile. Functions almost identically to ReCaptchaNoCaptchaAuthenticationRequest.
*/
class
TurnstileAuthenticationRequest
extends
CaptchaAuthenticationRequest
{
public
function
__construct
()
{
parent
::
__construct
(
''
,
[]
);
}
/**
* @inheritDoc
*/
public
function
loadFromSubmission
(
array
$data
)
{
// unhack the hack in parent
return
AuthenticationRequest
::
loadFromSubmission
(
$data
);
}
/**
* @inheritDoc
*/
public
function
getFieldInfo
()
{
$fieldInfo
=
parent
::
getFieldInfo
();
return
[
'captchaWord'
=>
[
'type'
=>
'string'
,
'label'
=>
$fieldInfo
[
'captchaInfo'
][
'label'
],
'help'
=>
wfMessage
(
'turnstile-help'
),
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 21:48 (16 h, 28 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
50/74/82837a781f66f3d1e8637aa26449
Default Alt Text
TurnstileAuthenticationRequest.php (887 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment