mediawiki-extensions-Confir.../ReCaptchaNoCaptcha/includes/ReCaptchaNoCaptchaHooks.php
Florian 5f24bff3f4 Use globally not-blocked recaptcha.net instead of google.com
Bug: T250297
Change-Id: I05bb74e65ce9ce425a7a4fecd33a75748ef6cc43
2020-04-17 23:46:21 +00:00

24 lines
544 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' ) {
$vars['wgConfirmEditConfig'] = [
'reCaptchaSiteKey' => $wgReCaptchaSiteKey,
'reCaptchaScriptURL' => 'https://www.recaptcha.net/recaptcha/api.js'
];
}
return true;
}
}