mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-24 08:13:53 +00:00
24 lines
541 B
PHP
24 lines
541 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.google.com/recaptcha/api.js'
|
||
|
];
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
}
|