Expose setSystemValue

This commit is contained in:
Lukas Reschke 2014-08-22 15:53:23 +02:00
parent 97b536e3df
commit 88c3a4a31a
2 changed files with 4 additions and 6 deletions

View file

@ -18,11 +18,10 @@ class AllConfig implements \OCP\IConfig {
*
* @param string $key the key of the value, under which will be saved
* @param mixed $value the value that should be stored
* @todo need a use case for this
*/
// public function setSystemValue($key, $value) {
// \OCP\Config::setSystemValue($key, $value);
// }
public function setSystemValue($key, $value) {
\OCP\Config::setSystemValue($key, $value);
}
/**
* Looks up a system wide defined value

View file

@ -39,9 +39,8 @@ interface IConfig {
*
* @param string $key the key of the value, under which will be saved
* @param mixed $value the value that should be stored
* @todo need a use case for this
*/
// public function setSystemValue($key, $value);
public function setSystemValue($key, $value);
/**
* Looks up a system wide defined value