Skip to content

Instantly share code, notes, and snippets.

@Fannon
Created March 31, 2015 06:46
Show Gist options
  • Save Fannon/493dc09114e175b23e5d to your computer and use it in GitHub Desktop.
Save Fannon/493dc09114e175b23e5d to your computer and use it in GitHub Desktop.
$GLOBALS['wgHooks']['onResourceLoaderGetConfigVars'][] = 'exposeGlobalsToJavaScript';
function exposeGlobalsToJavaScript( array &$vars ) {
$vars['test_key'] = 'test_value';
die();
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment