minerva
minerva copied to clipboard
Feature: Using a Config Class instead of global Vars
There are several global Variables, which should be isolated/capsulated.
Instead of using:
if (!isset($minerva_config['use_minerva_access']) || $minerva_config['use_minerva_access'] === true) {
...code
}
Using Static Config Helper Class or anything else would be great!