You are not logged in.
Is it possible to access $bigtree["config"] variables in a custom class. To test I wrote a function that is just supposed to return $bigtree["config"]["js"]["minify"] but it doesn't work. Is there any way to access these variables through a class function or some other method?
Thanks
Offline
Sure -- at the top of your class method just do:
global $bigtree;
Then it'll be accessible inside the function scope.
Offline
Perfect! Once again thank you guys!!
Offline