mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-12-04 12:38:40 +00:00
28e07c225e
Change-Id: I626a61fd122361dff7ba6e9422f757347090ae41
24 lines
549 B
PHP
24 lines
549 B
PHP
<?php
|
|
|
|
class ReCaptchaNoCaptchaHooks {
|
|
/**
|
|
* Adds extra variables to the global config
|
|
*
|
|
* @param array &$vars Global variables object
|
|
* @return bool Always true
|
|
*/
|
|
public static function onResourceLoaderGetConfigVars( array &$vars ) {
|
|
global $wgReCaptchaSiteKey;
|
|
global $wgCaptchaClass;
|
|
|
|
if ( $wgCaptchaClass === ReCaptchaNoCaptcha::class ) {
|
|
$vars['wgConfirmEditConfig'] = [
|
|
'reCaptchaSiteKey' => $wgReCaptchaSiteKey,
|
|
'reCaptchaScriptURL' => 'https://www.recaptcha.net/recaptcha/api.js'
|
|
];
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|