Created
March 31, 2015 06:46
-
-
Save Fannon/493dc09114e175b23e5d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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