summaryrefslogtreecommitdiffstats
path: root/lib/private/systemconfig.php
Commit message (Collapse)AuthorAgeFilesLines
* Add a method to set/unset multiple config values in one callJoas Schilling2015-01-231-0/+10
| | | | | This reduces the number of file writes we do for config.php and therefor hopefully helps lowering the chances for empty config.php files
* Extract interaction with config.php into SystemConfigMorris Jobke2014-12-081-0/+49
* introduce SystemConfig to avoid DI circle (used by database connection which is itself needed by AllConfig that itself contains the methods to access the config.php which then would need the database connection - did you get it? ;)) * use DI container and use that method in legacy code paths (for easier refactoring later) * create and use getSystemConfig instead of query() in DI container