VuFind uses a few important global variables that you may find helpful when building modules and maintaining the code.
These two globals are the most important, and their use is encouraged:
These globals are used in the code in a few places, but their use should be avoided unless absolutely necessary:
Remember that in PHP, you need to declare globals at the top of any functions or methods that use them. For example:
function dumpConfigArray() { global $configArray; print_r($configArray); }