diff options
Diffstat (limited to 'lib/public/config.php')
-rw-r--r-- | lib/public/config.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/public/config.php b/lib/public/config.php index 8e3791b449b..ea3e0c1372a 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -71,6 +71,16 @@ class Config { } /** + * Deletes a value from config.php + * @param string $key key + * + * This function deletes the value from config.php. + */ + public static function deleteSystemValue( $key ) { + return \OC_Config::deleteKey( $key ); + } + + /** * Gets the config value * @param string $app app * @param string $key key |