nextcloud/lib/private/legacy/config.php

81 lines
1.9 KiB
PHP
Raw Normal View History

2013-03-03 15:06:00 +04:00
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @author Jakob Sack
* @copyright 2012 Frank Karlitschek frank@owncloud.org
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
2013-03-03 15:06:00 +04:00
*/
/**
* This class is responsible for reading and writing config.php, the very basic
2013-06-04 02:05:38 +04:00
* configuration file of ownCloud.
*
* @deprecated use \OC::$server->getConfig() to get an \OCP\Config instance
2013-03-03 15:06:00 +04:00
*/
2013-06-04 02:05:38 +04:00
class OC_Config {
/** @var \OC\Config */
2013-03-03 15:06:00 +04:00
public static $object;
2013-06-04 02:05:38 +04:00
2013-03-03 15:06:00 +04:00
/**
* Lists all available config keys
2014-05-11 21:13:51 +04:00
* @return array an array of key names
2013-03-03 15:06:00 +04:00
*
* This function returns all keys saved in config.php. Please note that it
* does not return the values.
*/
public static function getKeys() {
return self::$object->getKeys();
}
/**
* Gets a value from config.php
2013-03-03 15:06:00 +04:00
* @param string $key key
* @param mixed $default = null default value
* @return mixed the value or $default
2013-03-03 15:06:00 +04:00
*
* This function gets the value from config.php. If it does not exist,
* $default will be returned.
*/
2013-06-04 02:05:38 +04:00
public static function getValue($key, $default = null) {
return self::$object->getValue($key, $default);
2013-03-03 15:06:00 +04:00
}
/**
* Sets a value
2013-03-03 15:06:00 +04:00
* @param string $key key
* @param mixed $value value
2013-03-03 15:06:00 +04:00
*
2013-06-04 02:05:38 +04:00
* This function sets the value and writes the config.php.
*
2013-03-03 15:06:00 +04:00
*/
2013-06-04 02:05:38 +04:00
public static function setValue($key, $value) {
self::$object->setValue($key, $value);
2013-03-03 15:06:00 +04:00
}
/**
* Sets and deletes values and writes the config.php
*
* @param array $configs Associative array with `key => value` pairs
* If value is null, the config key will be deleted
*/
public static function setValues(array $configs) {
self::$object->setValues($configs);
}
2013-03-03 15:06:00 +04:00
/**
* Removes a key from the config
2013-03-03 15:06:00 +04:00
* @param string $key key
*
2013-06-04 02:05:38 +04:00
* This function removes a key from the config.php.
2013-03-03 15:06:00 +04:00
*/
2013-06-04 02:05:38 +04:00
public static function deleteKey($key) {
self::$object->deleteKey($key);
2013-03-03 15:06:00 +04:00
}
}