Can you show me an example? I tried using global before, it didn't work.
For example,
global_bootstrap_complete
PHP Code:
global $myvar = 5;
process_templates_complete
PHP Code:
global $myvar;
$f = fopen('debugx.txt', 'w');
fwrite ($f, print_r($myvar, true));
fclose($f);
I tried with/without global (and a few combination of hooks) before but debugx.txt is always empty.