diff options
Diffstat (limited to 'lib/public/iconfig.php')
-rw-r--r-- | lib/public/iconfig.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index a1952ef8f84..868a4133d2e 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -35,6 +35,14 @@ namespace OCP; */ interface IConfig { /** + * Sets and deletes system wide values + * + * @param array $configs Associative array with `key => value` pairs + * If value is null, the config key will be deleted + */ + public function setSystemValues(array $configs); + + /** * Sets a new system wide value * * @param string $key the key of the value, under which will be saved |